How to save figure as appears on the screen? with the same aspect ratio, and font size, etc. ?
3 views (last 30 days)
Show older comments
figure('units','normalized','outerposition',[0 0 .5 1]);
hist(rand(100));
saveas(gcf,sprintf('%s.png',mfilename));
For example in this case the output png is not a portrait format, however the figure window is.
0 Comments
Answers (2)
thomas weldon
on 21 Jun 2018
Edited: Walter Roberson
on 25 Jun 2018
Try this:
fig=gcf;ax=fig.CurrentAxes;fig.Color='w';fig.OuterPosition=fig.InnerPosition;
0 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!