Tiff to Jpeg

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Rajeshsms
Posts: 3
Joined: 2015-02-26T08:46:35-07:00
Authentication code: 6789

Tiff to Jpeg

Post 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
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Tiff to Jpeg

Post 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
Rajeshsms
Posts: 3
Joined: 2015-02-26T08:46:35-07:00
Authentication code: 6789

Re: Tiff to Jpeg

Post by Rajeshsms »

Million thanks. It worked. How can now one process 1000 files via a batch process.

Regards
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Tiff to Jpeg

Post by snibgo »

Write a script.
snibgo's IM pages: im.snibgo.com
Post Reply