Re: Convert Problem
Posted: 2007-04-08T00:14:15-07:00
-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