I use imagemagick without the perl interface, as follows:
`convert theOriginalFile -geometry 100x100! $$.tempFile;mv $$.tempFil theOriginalFile`;
The reason I prefer the `` shell out is that it means that I can test this all myself at the shell.
ImageMagick is available in binary form for every platform that I have found and it is GPL so free
Main Topics
Browse All Topics





by: mjcoynePosted on 2008-02-26 at 17:38:07ID: 20990656
I suggest using Imagemagick via the Perlmagick API (see http://www.imagemagick.org /script/pe rl-magick. php) for image manipulation. I've always gotten much better results with this than with GD.