Page 1 of 1

resizing tiff is producing multiple strips tiff

Posted: 2013-08-25T06:18:34-07:00
by rjilani
Hi: I am using convert command to reduce the size of the tiff e.g. convert -resize 20% input.tiff output.tiff. The input tiff is composed of single strip, but the output tiff generated is composed of multiple strips. Is there any way to force imagemagick to produce output tiff as single strips instead of multiple strips.

Regards,
RJ.

Re: resizing tiff is producing multiple strips tiff

Posted: 2013-08-25T07:44:29-07:00
by snibgo
I know nothing about tiff strips, but does "-define tiff:rows-per-strip={value}" do what you want?

See http://www.imagemagick.org/script/comma ... php#define

Re: resizing tiff is producing multiple strips tiff

Posted: 2013-08-25T11:27:42-07:00
by fmw42
convert -resize 20% input.tiff output.tiff
This is not good IM 6 syntax, though may still work. The input image should be read before any commands

convert input.tiff -resize 20% output.tiff


This probably has no bearing on the strips issue.

see
http://www.imagemagick.org/Usage/basics/#why


What version of IM are you using and what platform? Can you post a link to your tiff file?


see
viewtopic.php?f=1&t=9620

Re: resizing tiff is producing multiple strips tiff

Posted: 2013-08-26T06:02:06-07:00
by rjilani
Thanks both of you for the tips. I am using imagemagick 6.8.4-10 on windows 64 bit machine

BTW the suggested switch earlier "-define tiff:rows-per-strip={value}" did the trick for me and able to produced a single strip tiff.

Regards,
RJ.