Dear All,
Wondering how I can convert tons of two pages Tiff into one Jpeg with pictures appended on top of each other
Regards
Tiff to Jpeg
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Tiff to Jpeg
I am not sure IM supports all types of layered tiff.
But try
As a test, this seems to work, where logo: is an IM builtin special image (as noted by the colon)
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
Million thanks. It worked. How can now one process 1000 files via a batch process.
Regards
Regards