I have this script:

 function createThumb($source, $thumb_width=100)
        {
     $fl = dirname($source).'<br>';
     $new_name = 'thumb_'.basename($source);
     $img = imagecreatefromjpeg($source);
     $width = imagesx($img);
     $height = imagesy($img);
     $new_width = $thumb_width;
     $new_heght = floor($height * ($thumb_width / $width));
     $tmp_name = imagecreatetruecolor( $new_width, $new_heght );
     imagecopyresized($tmp_img, $img, 0, 0, 0, 0, $new_width, $new_heght, $width, $height);
      imagejpeg($tmp_img, $fl.DIRECTORY_SEPARATOR.$new_name);
        }

All data works fine. I echo every step to imagecopyresized where I get this warning.

Warning: imagecopyresized(): supplied argument is not a valid Image resource in /www/mdkbg.com/keasport/root/admin/parsing_vars.php5 on line 41

what could be the problem? I've changed the folder permission to 755 and I use php5 file tipes.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted
$tmp_name = imagecreatetruecolor( $new_width, $new_heght );

should read:

$tmp_img = imagecreatetruecolor( $new_width, $new_heght );
link|improve this answer
I didn't see the error but this worked. I just have optical illusion and realy don't see the difference :) – Victor Feb 28 '11 at 13:47
You were assigning the new image to the variable $tmp_name, but when you tried to use it you called it $tmp_img. – qbert220 Feb 28 '11 at 13:49
aaaa now I see. Thank you very much – Victor Feb 28 '11 at 13:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.