MATLAB save image from GUI using push button

2 ビュー (過去 30 日間)
T
T 2013 年 11 月 27 日
回答済み: Walter Roberson 2013 年 11 月 27 日
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?

採用された回答

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by