Bulk Resize of Images. - Linux
Want to do easy and quick Resize of bulk Images. below command is the best solution.
To run below command, ImageMagick needs to be installed.
find ./ -name "*.jpg" -exec mogrify -resize 50% {} \;
Above command will navigate to the all the Folder and Subfolder and shrink all jpg(s) to 50%.
To run below command, ImageMagick needs to be installed.
find ./ -name "*.jpg" -exec mogrify -resize 50% {} \;
Above command will navigate to the all the Folder and Subfolder and shrink all jpg(s) to 50%.
Comments