How can I save only content of matlab figure ?

23 views (last 30 days)
i am using the following code: fig=figure,imshow(RIm); saveas(fig,'22.jpg');
It saves as image but with white border. How can I save only content of the figure.

Answers (2)

KSSV
KSSV on 8 Feb 2017
x = rand(20,1) ;
y = rand(20,1) ;
plot(x,y)
set(gca,'LooseInset',get(gca,'TightInset'));
saveas(gcf,'junk.jpg')
  1 Comment
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah on 9 Feb 2017
thanks for your answer... Not plot! I want to save from figure,imshow() without white border

Sign in to comment.


James Tursa
James Tursa on 9 Feb 2017
You might check out this FEX submission by Yair Altman:

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!