Save figure as jpg with 600dpi

45 Ansichten (letzte 30 Tage)
Nikolas Spiliopoulos
Nikolas Spiliopoulos am 4 Sep. 2019
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
Jan
Jan am 4 Sep. 2019
Whenever you mention an error in the forum, post a copy of the complete message.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jan
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' ?
  3 Kommentare
Jan
Jan am 4 Sep. 2019
Okay. And with '-djpeg' ?
Nikolas Spiliopoulos
Nikolas Spiliopoulos am 4 Sep. 2019
with -djpeg it's working, just wondering if there is any option for jpg

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Fabio Freschi
Fabio Freschi am 4 Sep. 2019
In print command, for jpg images, the flag is '-djpeg'

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by