On Thu, 6 Jun 2002 23:44:06 +0200, Ragnar wrote:
>Is there a way in php to change the size of a posted/uploaded image
>regardless of the imagetype?

install imagemagick and then do something like:

exec("/path/to/mogrify -geometry ".$width."x".$height." ".$file);
                


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to