img.php生成图片

时间:2022-02-07 23:05:23
【文件属性】:

文件名称:img.php生成图片

文件大小:6KB

文件格式:PHP

更新时间:2022-02-07 23:05:23

php 开发语言 后端

$origImg = ImageCreateFromPNG("test.png"); //背景图像,要求必须用png格式。 ImageCopyResized($picture,$origImg,0,0,0,0,$width,$height,ImageSX($origImg),ImageSY($origImg)); //将背景图像和原图片合成代码 Imageline($picture,0,0,$width-1,0,$bordercolor); Imageline($picture,0,0,0,$height-1,$bordercolor); Imageline($picture,$width-1,$height-1,$width-1,0,$bordercolor); Imageline($picture,$width-1,$height-1,0,$height-1,$bordercolor);


网友评论