view perl/convert_images.pl @ 6:300619cf1669 judyates

[svn r7] addws left and right arrows; struggling with inmotion to get the fucker to work on their site
author rlm
date Mon, 22 Feb 2010 10:25:51 -0500
parents 60668cf4f443
children ed6ee381b8fd
line wrap: on
line source
1 @names = glob("*.tif");
3 for (@names){
4 /(.*)\.tif/;
5 $name = $1;
6 `convert $_ -resize 200X1000 -quality 85\% $name(small).jpg`;
7 }