Save figure as jpg with 600dpi

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 Commento

Jan
Jan il 4 Set 2019
Whenever you mention an error in the forum, post a copy of the complete message.

Accedi per commentare.

 Risposta accettata

Jan
Jan il 4 Set 2019
Modificato: Jan il 4 Set 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 Commenti

Hi there,
thanks for the anwser . I tried this and I get an errror
Error using inputcheck
Illegal option '-jpg' given.
Error in inputcheck
Error in print (line 41)
[pj, devices, options ] = inputcheck( pj, inputargs{:} );
Jan
Jan il 4 Set 2019
Okay. And with '-djpeg' ?
with -djpeg it's working, just wondering if there is any option for jpg
DGM
DGM il 10 Nov 2024
There is no '-djpg' device option. The option for JPG is '-djpeg'.
The "-d" prefix stands for "device". The output is to be sent to the JPG "device"

Accedi per commentare.

Più risposte (1)

Fabio Freschi
Fabio Freschi il 4 Set 2019

0 voti

In print command, for jpg images, the flag is '-djpeg'

Categorie

Scopri di più su Environment and Settings in Centro assistenza e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by