please, do you know how to convert folder with jpg images to folder with tif images? I know how to convert one file to one file. By Google searching i found this:
Code: Select all
convert -compress none *.jpg Picts.tiff
And this
Code: Select all
convert -format tiff -compress none *.jpg
There is also option mogrify, but the result tif is slightly different from one converted tif with option convert. They differ in version of tiff (one has 5.0, one has 6.0), size and so on.
So i wonder if there is a way how to convert folder of images to tiff using option convert.
(i use IM 6.9.3 on Windows)