$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 ビットを取り出すとメイジがポンプアウトすることはわかっているので、イメージ作成コードに問題はありません。
ありがとう