How to resize product photos in batch (Center, White background with Aspect ratio)?

Today I had to resize large no of photos for an e-commerce website. Maybe it is the same reason why you read this article :).

Images were downloaded from the internet, therefore they were in various sizes varying from 650px to 5000px. Here are the requirements I had when I started this job.

  1. Final image size should be 500 x 500px.
  2. If the original image is larger it should be resized, with respect to the aspect ratio.
  3. If the image width and height differ, the lower side should be filled with white background.
  4. Original image should be in the Center of the Final image.

Most especially I am not a fan of wasting my time on repetitive works so AUTOMATION was the most important requirement:).

I tried many solutions and finally found a convenient method that can address all of my above requirements. It was with the Mogrify tool comes with the ImageMagic package.

This is a Linux tool but it’s very simple so please don’t run away :).

Installing ImageMagick

I am using Debian derivative OS for this example. If you have any other OS, please use the respective installation command.

sudo apt-get update
sudo apt-get install imagemagick

Processing images
Note: In my situation, all images were in jpg format but if you have images in various formats please convert all of them to jpg before proceeding.
Upload all of your photos to a folder in the Linux box and open that folder from the CLI.

cd /image_folder
mogrify -resize 500×500 -extent 500×500 -gravity center -background white *.jpg

That’s it! :). Download your uploaded images and they should be in the required format by now.

You can do much more things with this amazing tool. Please check the official documentation of mogrify to learn more.

Hope this helped!

Like this post? Please share to your friends:
List Of What
Leave a Reply

;-) :| :x :twisted: :smile: :shock: :sad: :roll: :razz: :oops: :o :mrgreen: :lol: :idea: :grin: :evil: :cry: :cool: :arrow: :???: :?: :!: