我在我的项目中使用 PHP,我的朋友使用以下代码:
function imagecopyresampled($out, $in, $dstX, $dstY, $srcX=0, $srcY=0, $dstW, $dstH, $srcW, $srcH)
{
if($this->GD_VERSION==2)
return imagecopyresampled($out, $in, $dstX, $dstY, $srcX, $srcY, $dstW, $dstH, $srcW, $srcH);
else
return imagecopyresized($out, $in, $dstX, $dstY, $srcX, $srcY, $dstW, $dstH, $srcW, $srcH);
}
当我想上传图片时,我收到此错误:
警告:imagecopyresampled() 期望参数 5 很长,字符串在 /home/mbeuser/public_html/nephrogest/includes/common/image/ImageFilter.class.php5 第 917 行给出
这是第 917 行:
return imagecopyresampled($out, $in, $dstX, $dstY, $srcX,
$srcY, $dstW, $dstH, $srcW, $srcH);