Convert Problem

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Convert Problem

Post 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
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Convert Problem

Post by anthony »

Also -resample is itself a resize operator. I wouldn't use it ,if you only care about pixel dimensions.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply