Change image dpi to save disk space
Posted: Tue Feb 21, 2012 11:34 am
Using imagemagick cli tool mogrify you can reduce the size of your image to save space.
Code: Select all
find -type f -iname "*.jpg" -exec mogrify -resize '1280x1024>' {} \;