Save figure as jpg with 600dpi
24 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nikolas Spiliopoulos
am 4 Sep. 2019
Kommentiert: Walter Roberson
am 10 Nov. 2024
Hi all,
I am trying to save some figures through coding, in jpg format and 600dpi.
Hovewer I have tried these, but still getting error (Matlab version 2019a)
saveas('figure.jpg')
print(gcf,'figure.jpg','-jpg','-r600');
thanks in advance
1 Kommentar
Akzeptierte Antwort
Jan
am 4 Sep. 2019
Bearbeitet: Jan
am 4 Sep. 2019
saveas('figure.jpg')
The first input must be the handle of a figure.
print(gcf, 'figure.jpg', '-jpg', '-r600');
There is no '-jpeg' option for the print command. Do you mean '-djpeg' ?
5 Kommentare
Walter Roberson
am 10 Nov. 2024
The "-d" prefix stands for "device". The output is to be sent to the JPG "device"
Weitere Antworten (1)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!