Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

resize image command-line recursively on all files

#creates copies of the images
find . -name "*.jpg" | xargs convert -resize 50%
# convert them in place, you can use:
find . -name "*.jpg" | xargs mogrify -resize 50%
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #resize #image #recursively #files
ADD COMMENT
Topic
Name
9+3 =