I have an upload.php.
$img = new ImageMagick($FILES[upload]);
$img->Convert('jpg');
$img->Save('blah.jpg');
$img->resize(10,7,'fit');
$img->Save('blah.jpg',"thumb");
//$img->CleanUp();
echo " here you are!";
I found in my target dir and tmp dir has no
blar.jpg...and the thumb image. But in tmp dir, there is tmp0_111556hockey.gif, if I uploaded the hokey.gif file.
This is strange....can you have a look?