For example, if I have a large image that's 1600x1200, but I want to generate a thumbnail that is 250x200 (a different ratio of height and width) -- how can I scale this down to size and then center crop it? Is this possible in one line using convert?
Scale down + fill given area (and stretch output image if required)If you want to scale down to 250x200 pixels (without keeping the aspect ratio), completely filling the space of 250x200 (stretching/distorting the image if necessary), use:
(Note the Scale down + fit result into give area (and keep aspect ratio, and if required, waive some of the area given)If you want to scale down to inside 250x200 pixels while keeping aspect ratio (the ratio of height to width) of the original image and cropping that dimension of the 250x200 pixels which isn't used up, use:
By default width and height given in the This command above "tries" to set the dimensions to 250x200:
So the final dimension will be either of 250x187 or more likely, 250x188 pixels (you can't have fractions of a pixel in the height, it requires an integer!). Scale down + center result in given area (and use some background color to fill remaining space)If you want to scale down to inside 250x200 pixels, keeping aspect ratio of the original and creating an image that is the full-sized 250x200 pixels centering the real image in that space by adding some yellow background, use:
Replace the background color with any other you like better, or with Scale down keeping aspect ratio + without cropping to given areaIf you want to scale to 250x200 pixels keeping the aspect ratio, completely filling the space of 250x200 (but not cropping off any overflowing), use:
(Note the This command above "tries" to set the dimensions to 250x200:
Scale down keeping aspect ratio + with cropping to given areaIf you want to scale to 250x200 pixels keeping the aspect ratio, completely filling the space of 250x200 (cropping off strips from left and right edges), use:
The final dimension of the image will be 250x200. Compared to the previous command (which gave a 250x267 result), some pixel columns from the left and right edges are removed. |
|||||||
|