how to save figures without margin?

37 Ansichten (letzte 30 Tage)
Jack Xiao
Jack Xiao am 11 Mai 2019
Kommentiert: Nick Tsui am 17 Nov. 2022
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)
捕获asda.PNG
the orginal image is : (the size is 500x430)
ILSVRC2012_val_00000224.JPEG
how to save figures without margin?

Akzeptierte Antwort

Valeriy
Valeriy am 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 Kommentare
Maximiliano Barbosa
Maximiliano Barbosa am 18 Feb. 2022
Thank you
Nick Tsui
Nick Tsui am 17 Nov. 2022
There are still some margins on both left and right sides of the image.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by