-Define - which image size?
Posted: 2010-01-18T06:04:16-07:00
Hello!
Which dimensions should be set to "define" to optimize conversion?
for example: I have an .jpg image 1600x1200 (maybe larger), and want a new image on the web.
(I don't know the optimal image size on web )
Example of a "convert" Commando:
Is it optimal to give "-define" double size as the size of the new image?
Will it be a lower picture quality, by using "-define"? (instead of only using "-resize")
__________________________________________________________________________
Info:
On page: http://www.imagemagick.org/Usage/formats/#jpg_read
are the following example: (I don't know the size of image.jpg)
On the site:
http://www.imagemagick.org/script/comma ... hp?#define
can you read about the benefits of using "-define"
On this site:
http://www.imagemagick.org/Usage/formats/#jpg_read
I found the following: "This setting is a hint to the JPEG image library to read just enough of the input (JPEG) image file to create an image that is at least the given size (width × height) or larger."
//Jan
Which dimensions should be set to "define" to optimize conversion?
for example: I have an .jpg image 1600x1200 (maybe larger), and want a new image on the web.
(I don't know the optimal image size on web )
Example of a "convert" Commando:
Code: Select all
convert -define jpeg:size=240x180 Image.jpg -resize 100x80 NewImage.gif
Will it be a lower picture quality, by using "-define"? (instead of only using "-resize")
__________________________________________________________________________
Info:
On page: http://www.imagemagick.org/Usage/formats/#jpg_read
are the following example: (I don't know the size of image.jpg)
Code: Select all
convert -define jpeg:size=240x180 image.jpg -thumbnail 120x90 thumbs/image.gif
http://www.imagemagick.org/script/comma ... hp?#define
can you read about the benefits of using "-define"
On this site:
http://www.imagemagick.org/Usage/formats/#jpg_read
I found the following: "This setting is a hint to the JPEG image library to read just enough of the input (JPEG) image file to create an image that is at least the given size (width × height) or larger."
//Jan