imagemagick
Posted: Sat Mar 04, 2006 8:41 pm
anyone know of a premade script using php/imagemagick for making thumbnails?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
exec("/usr/local/bin/mogrify +profile \"*\" -resize 320x240! /home/path/to/source /home/path/to/thumb");
?>Code: Select all
<?php
exec("/usr/local/bin/mogrify +profile \"*\" -resize 320x240! /home/scott/public_html/images/logo.gif /home/scott/public_html/th_test.gif");
?>