为了账号安全,请及时绑定邮箱和手机立即绑定

有错误出现求解答

/*图片压缩*/
public function thumbImage($width,$height){
   $image_thumb=imagecreatetruecolor($width,$height);
   imagecopyresampled($image_thumb,$this->image,0,0,0,0,$width,$height,$this->imageinfo['width'],$this->imageinfo['height']);
   imagedestroy($this->image);
   $this->image=$image_thumb;
}
/*添加文字水印*/
public function fontMark($content,$font_url,$font_size,$color,$local,$angle){
   $colortrue=imagecolorallocatealpha($this->image,$color[0],$color[1].$color[2],$color[3]);
   imagettftext($this->image,$font_size,$angle,$local['x'],$local['y'],$colortrue,$font_url,$content);
}
/*浏览器中显示图片*/
public function showImage(){
   header("Content-type:",$this->imageinfo['mime']);
   self::printImage($this->image);
}
/*保存实体文件*/
public function saveImage($picName){
   $picturename=$picName.'.'.$this->imageinfo['type'];
   self::printImage($this->image,$picturename);
}

正在回答

3 回答

$content='hello world'后面应该是分号;

0 回复 有任何疑惑可以回复我~

那块是截得屏幕里的图片,讲到那块自己错了,后面视屏里改回来了,我出现的主要错误是
$colortrue=imagecolorallocatealpha($this->image,$color[0],$color[1].$color[2],$color[3]);
这一行的$color[1].$color[2]之间用点连接了,导致参数少了一个报错,不过还是谢谢你了

0 回复 有任何疑惑可以回复我~

逗号都不对,都是分号才行。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

有错误出现求解答

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信