Page 1 of 1

Tiff to Jpeg

Posted: 2015-02-26T08:57:31-07:00
by Rajeshsms
Dear All,

Wondering how I can convert tons of two pages Tiff into one Jpeg with pictures appended on top of each other

Regards

Re: Tiff to Jpeg

Posted: 2015-02-26T11:04:34-07:00
by fmw42
I am not sure IM supports all types of layered tiff.

But try

Code: Select all

convert image.tiff -append image.jpg

As a test, this seems to work, where logo: is an IM builtin special image (as noted by the colon)

Code: Select all

convert logo: \( +clone -flip \) logo.tiff
convert logo.tiff -append logo.jpg

Re: Tiff to Jpeg

Posted: 2015-03-02T08:33:05-07:00
by Rajeshsms
Million thanks. It worked. How can now one process 1000 files via a batch process.

Regards

Re: Tiff to Jpeg

Posted: 2015-03-02T10:07:12-07:00
by snibgo
Write a script.