Difference between revisions of "Image magic"

From Wasya Wiki
Jump to: navigation, search
(Created page with " for i in $(ls *.jpg); do convert -resize 10% $i thumbs_10p/$i; done")
 
 
Line 1: Line 1:
 
   for i in $(ls *.jpg); do convert -resize 10% $i thumbs_10p/$i; done
 
   for i in $(ls *.jpg); do convert -resize 10% $i thumbs_10p/$i; done
 +
 +
  find . -maxdepth 1 -iname '*jpeg' -exec convert -resize 1200x1200 {} {}_thumb.jpg \; ; mkdir thumbs ; mv *thumb.jpg thumbs

Latest revision as of 06:04, 21 July 2025

 for i in $(ls *.jpg); do convert -resize 10% $i thumbs_10p/$i; done
 find . -maxdepth 1 -iname '*jpeg' -exec convert -resize 1200x1200 {} {}_thumb.jpg \; ; mkdir thumbs ; mv *thumb.jpg thumbs