Saving Figure using saveas() function
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is there any way by which I can save the current figure?.
When I use saveas() function eg)saveas(gcf,'pred_prey.jpg') the current image in the figure gets saved but with a white background with my image centered in it.
I need only the image no need of the white background. How can I do that?
https://picasaweb.google.com/lh/photo/xxof9xl2tRBx0GttFdESBJOzMXS1UfqXPDW9N1lFu0w?feat=directlink
![](https://lh6.googleusercontent.com/_1RUNP8L_H4U/TV5nfp09MAI/AAAAAAAAAKk/GxB1d1F6j0s/jj.jpg)
1 Kommentar
Jan
am 18 Feb. 2011
The link shows a picture, but it does not clear the difference of what you get and waht you want.
Akzeptierte Antwort
Oliver Woodford
am 18 Feb. 2011
The function export_fig (available on the File Exchange) will automatically crop the image for you. It will not change the background colour, nor will it resize the figure. It will save to jpeg with low compression/high quality by default.
Download it then try:
export_fig(gcf, 'pred_prey.jpg');
0 Kommentare
Weitere Antworten (2)
Doug Hull
am 18 Feb. 2011
If you have the image as a matrix that you used in IMSHOW, then IMWRITE directly on the matrix should work.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Printing and Saving finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!