$background = imagecreatetruecolor(709,709);
$whiteBackground = imagecolorallocate($background, 255, 255, 255);
imagecopyresampled($whiteBackground, $new_img,(709-$imageWidth)/2,(709-$imageHeight)/2, 0, 0, $imageWidth, $imageHeight, $width, $height);
ImageJpeg ($background,"$path/$newName.$file_ext", 85);
我试图用 GD 创建图像, 带有白色背景 。 但是没有运气, 任何想法会做错什么? 我知道一个图像泵, 如果我拿掉白色背景部分, 所以它与创建图像代码没有错 。
谢谢 谢谢