[Q]Good quality Web size Images(reproduce iView quality)

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
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: [Q]Good quality Web size Images(reproduce iView quality)

Post by fmw42 »

try this: use modulate to increase saturation by 35%, use sharpen to sharpen the image just slightly

convert original.jpg -strip -density 72 -depth 8 -quality 100 -resize 640x600 \
-modulate 100,135,100 -sharpen 0x0.5 \
original_sat35_sharp0p5.jpg

Image
Post Reply