Filter löschen
Filter löschen

MATLAB save image from GUI using push button

4 Ansichten (letzte 30 Tage)
T
T am 27 Nov. 2013
Beantwortet: Walter Roberson am 27 Nov. 2013
I need help in exporting the figure that is embedded in your GUI:
axes(handles.axes3);
[FileName, PathName] = uiputfile('*.jpg', 'Save As');
Name = fullfile(PathName, FileName);
imwrite(?????, Name, 'jpg');
What does in the question mark? I put in handles.axes3 and it creates the file at 1kb but there's no image.
What am i doing wrong?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 27 Nov. 2013
See getframe(). Also see saveas() and print(), both of which would be likely be more appropriate than getframe() for your purpose.

Weitere Antworten (0)

Kategorien

Mehr zu Printing and Saving finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by