$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 创建一个白色背景的图像。但是没有运气,任何想法我做错了什么?我知道如果我取出 whiteBackground 位,法师会抽水,所以创建图像代码没有问题。
谢谢