php gd2缩略图创建者脚本问题

时间:2011-02-28 13:38:32

标签: php thumbnails gd2

我有这个脚本:

 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);
        }

所有数据都运行良好。我回应imagecopyresized的每一步,我得到了这个警告。

警告:imagecopyresized():提供的参数不是41行/www/mdkbg.com/keasport/root/admin/parsing_vars.php5中的有效图像资源

可能是什么问题?我已将文件夹权限更改为755并使用php5文件tipes。

1 个答案:

答案 0 :(得分:0)

$tmp_name = imagecreatetruecolor( $new_width, $new_heght );

应为:

$tmp_img = imagecreatetruecolor( $new_width, $new_heght );