saving figures using saveas
2 views (last 30 days)
Show older comments
Hello,
When I have a matlab figure open and I use the dropdown menu to save the figure as a JPEG, everything works fine and the whole image is saved correctly. My problem is that I have to save many images so I save it within my code using saveas(gca,'someimage.jpg'). When using saveas, most of the JPEG file is cut off at the top. Is there something i can do to get the whole image?
Thanks, Mason
Answers (1)
Jessica Lam
on 11 Jun 2012
will you consider to use one command print ?
For example , plot(1:10); plot_filename='testing.jpg'; print('-djpeg', plot_filename, '-r100'); http://www.mathworks.com.au/help/techdoc/ref/print.html
See Also
Categories
Find more on Printing and Saving 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!