the world is a pixel
Posts tagged thumbnail
Creating a lot of thumbnails with Shell script
Sep 25th
This script create a thumbnail with width 100 of each png file in the actual directory.
#!/bin/sh for i in *.png do echo "convert -thumbnail 100 $i $i" convert -thumbnail 100 $i $i done












