Tuesday, December 30, 2014

Resize images from the command line in Ubuntu

If you need to resize a lot of images to conserve disk space, you can use imagemagick. Note: mogrify will overwrite the original files.

sudo apt-get install imagemagick
mogrify -resize 1024x768 *JPG

0 comments: