尝试使用GD Library的imagecopyresized方法时出现以下错误:
Warning: imagecopyresized() expects parameter 1 to be resource, string given in....
以下是代码行:
imagecopyresized($fullPath, $fullPath, 0, 0, 0, 0, 1000, $dst_h, $src_w, $src_h);
$ fullpath等于以下内容:
/Applications/MAMP/htdocs/imageCrop/img/fileName.png
有人可以提供任何帮助吗?
答案 0 :(得分:-1)
检查文档:http://php.net/manual/en/function.imagecopyresized.php
资源是通过创建图像对象获得的二进制数据(指针)
$source = imagecreatefromjpeg($filename);
这就是$ fullPath 的用武之地。