Reputation: 2269
I'm using graphicsmagick to resize an image to a thumbnail, but it's adding a white surrounding border padding.
The command I'm using is:
gm convert matrix.jpg -resize "80x80>" -gravity center -extent 80x80 thumbnail.jpeg
As you can see, there is some white padding around the image, but I don't want this. Ideally I'd like (the entire image not just a crop of it) to fill the desired 80x80 output size.
How can this be achieved in either imagemagick or graphicsmagick?
Upvotes: 5
Views: 2694
Reputation: 4164
If you want to keep the original aspect ratio, without image distortion, you can use the ImageMagick -trim option to get rid of the white padding:
convert "matrix.jpg" -resize "80x80" -gravity center -extent 80x80 -trim "thumbnail.jpg"
This will produce a 58x80 uncropped image with the same aspect ratio as the original. It is 58x80 because ImageMagick uses the larger dimension of the original to compute the scale factor (in this case 80/200) and scales the smaller dimension by that same factor to preserve aspect ratio.
If you want an uncropped image of exactly 80x80 pixels, this is a different aspect ratio than the original. The output image will have distortion, and @AL's resizing without crop option will work.
convert "matrix.jpg" -resize "80x80!" -gravity center -extent 80x80 "thumbnail.jpg"
Tested in Windows 7 with ImageMagick 6.8.9. @AL syntax is probably Linux.
Upvotes: 3
Reputation: 10513
I used ImageMagick with this image. This solution requires to know the size of the input image.
The image has 145 pixels horizontally and 200 pixels vertically.
convert -crop 145x145+0+0 -resize 80x80 matrix.jpg thumbnail.jpeg
I used 145x145
in order to extract a square from the original image. +0+0
is the offset of the extracted square, hereby the top left.
convert -crop 145x145+0+27 -resize 80x80 matrix.jpg thumbnail.jpeg
The vertical offset is set to 27
because we have to remove 55
(200 - 145
) pixels on top or bottom, so we need to remove 27 (55 ÷ 2
) pixels on the top and 28 pixels on the bottom.
convert -crop 145x145+0+55 -resize 80x80 matrix.jpg thumbnail.jpeg
convert -resize 80x80\! matrix.jpg thumbnail.jpeg
The !
flag (escaped with \!
as suggested in the documentation) after the resize
parameters forces ImageMagick to ignore the aspect ratio.
Upvotes: 3