Search found 3 matches

by sanjaysurve
2015-03-09T00:40:53-07:00
Forum: Developers
Topic: Unable to process image [.tiff] which contains two or multi pages
Replies: 4
Views: 5101

Re: Unable to process image [.tiff] which contains two or multi pages


identify -format %n x1.tiff

11

identify x1.tiff

x1.tiff[0] TIFF 4924x7378 4924x7378+0+0 16-bit sRGB 1.1448GB 0.000u 0:00.000
x1.tiff[1] TIFF 4924x7378 4924x7378+0+0 16-bit sRGB 1.1448GB 0.000u 0:00.045
x1.tiff[2] TIFF 4924x7378 4924x7378+0+0 16-bit sRGB 1.1448GB 0.000u 0:00.045
x1.tiff[3] TIFF ...
by sanjaysurve
2015-03-09T00:02:32-07:00
Forum: Developers
Topic: Unable to process image [.tiff] which contains two or multi pages
Replies: 4
Views: 5101

Re: Unable to process image [.tiff] which contains two or multi pages

If your input file has two (or more) images, you will get two (or more) outputs. If your output format is tiff, that will be no problem.

If you want to process just one input from a tiff, use [n] where n is an integer from zero upwards, eg:
convert in.tiff[2] -resize 200x300 out.png

Hi snibgo ...
by sanjaysurve
2015-03-05T07:09:59-07:00
Forum: Developers
Topic: Unable to process image [.tiff] which contains two or multi pages
Replies: 4
Views: 5101

Unable to process image [.tiff] which contains two or multi pages

Hi,

I am successfully resizing images using imagemagick.

But when i am trying to manipulate or resize image [.tiff format] which contains two or more pages then its not processing properly.

If any one have an idea about the same. Please advice.

Thanks in advance.