how to save figures without margin?
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
as the title, I need to save the figures or images shown in the figure with the same size of the image.
but there are always margins as shown in the following: (the size is 604x593)

the orginal image is : (the size is 500x430)

how to save figures without margin?
0 Commenti
Risposta accettata
Valeriy
il 23 Feb 2020
Try:
axis off; % If you have axis titles, labels, etc.
set (gca,'Position',[0 0 1 1]);
print(gcf,'Test.jpg', '-djpeg', '-r300');
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Segmentation and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!