How to batch-convert JPG files to uncompressed TIFF

image conversionimagemagickimagesjpegtiff

I need to collect 1000 uncompressed TIFF files. I have a large set of JPG images, so I decided to convert them to TIFF format. The loss in quality is ok in this case for me.

I used the following command to convert a folder of JPG images to TIFF:

mogrify -format tiff *.jpg -compress none

Even though I included -compress none, it somehow uses JPEG compression. How can I convert JPEG files to uncompressed TIFF files then?

Best Answer

If you use imagemagick? and say

convert -compress none *.jpg Picts.tiff

Tell me if it works right for you