I'm trying to convert a 300 dpi TIF file to a 72 dpi JPG (on Windows).
If I do
Code: Select all
convert in.tif -density 72x72 out.tif
Code: Select all
convert in.tif -density 72x72 out.jpg
What is the command to do both, so that I get a JPG with the same pixel dimensions as the input file and 72 dpi resolution? Seems like it should be so simple but I'm struggling.
If I use resample I get an image still at 300 dpi but with smaller dimensions instead of an image with the same dimensions but different dpi. If I take the 72 dpi TIF and convert out.tif out.jpg afterwards it goes back to 300 dpi.
Thanks