MATLAB save image from GUI using push button
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
T
el 27 de Nov. de 2013
Respondida: Walter Roberson
el 27 de Nov. de 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?
0 comentarios
Respuesta aceptada
Walter Roberson
el 27 de Nov. de 2013
See getframe(). Also see saveas() and print(), both of which would be likely be more appropriate than getframe() for your purpose.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Printing and Saving en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!