softened, desaturated images when resized in imagemagick
Posted: 2009-05-08T12:04:12-07:00
I use imagemagick every day, but I can't figure out how to make resized images come out as crisp and colorful as the originals
All of our images have an sRGB profile, and here is an example of the code I am using:
convert -size 640x480 'filename.jpg' -resize 640x480 profile "*" -quality 100 -auto-orient 'newfilename.jpg'
or sometimes:
convert -size 640x480 'filename.jpg' -scale 640x480 profile "*" -quality 100 -auto-orient 'newfilename.jpg'
The images tend to come out soft and somewhat desaturated (colors aren't as vibrant).
Any ideas on how to fix that? I would like the images to look as close to the originals possible.
All of our images have an sRGB profile, and here is an example of the code I am using:
convert -size 640x480 'filename.jpg' -resize 640x480 profile "*" -quality 100 -auto-orient 'newfilename.jpg'
or sometimes:
convert -size 640x480 'filename.jpg' -scale 640x480 profile "*" -quality 100 -auto-orient 'newfilename.jpg'
The images tend to come out soft and somewhat desaturated (colors aren't as vibrant).
Any ideas on how to fix that? I would like the images to look as close to the originals possible.