Page 1 of 1

Re: Convert Problem

Posted: 2007-04-08T00:14:15-07:00
by Bonzo
-size I just use when resizing jpg images it is supposed to speed up the process.

Code: Select all

convert pic0002.tiff -size x760 -resample 72 -quality 85 pic0002.jpg
// Should be
convert pic0002.tiff -resize x760 -resample 72 -quality 85 pic0002.jpg

Re: Convert Problem

Posted: 2007-04-09T19:24:00-07:00
by anthony
Also -resample is itself a resize operator. I wouldn't use it ,if you only care about pixel dimensions.