Search found 1 match

by merkthere
2017-08-14T00:49:05-07:00
Forum: IMagick
Topic: converting a directory of TIF to JPG
Replies: 5
Views: 20598

Re: converting a directory of TIF to JPG

Install imagemagick $ sudo apt-get install imagemagick It's simplest usage is: $ convert File.tif File.jpg It is smart and goes by your file extension. Now, for doing batch conversions, we shall use a loop. cd into the directory where your tif files are. then: $ for f in *.tif; do echo "Convert...