well, you still can hope imagemackick is already installed. if passthru() is allowed for your scripts, you can try calling mogrify by a script. here's my function.
function resizepic($filename)
{
if($filename != '' && is_file($filename))
{
$command = "mogrify -geometry 175x250 $filename";
passthru($command);
}
}
this is just to find out if imagemagick is available on the system! upload an image to your webspace, than use a script calling this function to resize an image (note: $filename contains the linux path; it's not an URL. example: /home/myusername/public_html/test/image.gif). if it works, the imagemagick toolkit should be installed.