How can I save only content of matlab figure ?

42 vues (au cours des 30 derniers jours)
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah le 8 Fév 2017
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.

Réponses (2)

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

Connectez-vous pour commenter.


James Tursa
James Tursa le 9 Fév 2017
You might check out this FEX submission by Yair Altman:

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by