Computer Tips - How can I shrink an image?

Date: 2016feb7 Product: imagemagick convert Q. How can I shrink an image? A. Use imagemagick convert like this: On Linux:
convert original.jpg -resize 1024x1024 small.jpg
On Window:
magick convert original.jpg -resize 1024x1024 small.jpg
This doesn't change the aspect ratio of the images - it is fit into the box (in this case 1024x1024) that you specify.