I have a bunch of JPG files that I want to convert to TIFF. I don't want to uncompress them and recompress them, I just want a TIFF file containing the same compressed data as the JPG file did.
If I do
convert old.jpg -compress JPEG new.tif
is convert smart enough to do this?
how smart is convert's -compress option?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: how smart is convert's -compress option?
My understanding is that IM convert will always reprocess the image (even if you simply noop convert input.jpg output.tiff). But I will defer to the IM folks for correction.
Re: how smart is convert's -compress option?
Agreed. I would like to see an option to pass through the image without a needless uncompress/re-compress cycle.