我在服务器上使用GD Imagepng()时遇到了麻烦。我的代码在我的本地计算机上运行良好,正确创建文件,正确保存,但不在我的服务器上。
我看了很多帖子并尝试了许多事情而没有成功。 所有GD元素都已启用。如果我直接在页面中输出图片而不试图保存它,它可以工作,但是一旦我尝试保存它,它就不再工作了。 'custom'文件夹的权限设置为777.我的php文件编码为ANSI。
这是我的代码:
function random($car) {
$string = "";
$chaine = "abcdefghijklmnpqrstuvwxy1234567890";
srand((double)microtime()*1000000);
for($i=0; $i<$car; $i++) {
$string .= $chaine[rand()%strlen($chaine)];
}
return $string;
}
$pathPictures = Array();
$pathSmall = "images/custom/pure/166x250/";
$pathMid = "images/custom/pure/464x700/";
$pathBig = "images/custom/pure/1770x2668/";
array_push($pathPictures, $pathSmall, $pathMid, $pathBig);
$sizes=Array('166x250', '464x700' ,'1770x2668');
$colorRGB = explode(',', str_replace(array('rgb(', ')'), '', $_POST["selectedColor"]));
$selectedPictures = Array();
array_push($selectedPictures, $_POST["selectedStringerImg"]);
array_push($selectedPictures, $_POST["selectedGraphicImg"]);
array_push($selectedPictures, $_POST["selectedFinsFuturesLeftImg"]);
array_push($selectedPictures, $_POST["selectedFinsFuturesCenterImg"]);
array_push($selectedPictures, $_POST["selectedFinsFuturesRightImg"]);
array_push($selectedPictures, $_POST["selectedFinsFCSImg"]);
array_push($selectedPictures, "mask-pure.png");
$pixName = random(25);
for($a=0;$a<=2;$a++){
$size = explode('x', $sizes[$a]);
$x=$size[0];
$y=$size[1];
$final_img = imagecreatetruecolor($x, $y);
$color = imagecolorallocatealpha($final_img, $colorRGB[0], $colorRGB[1], $colorRGB[2], 0);
imagefill($final_img, 0, 0, $color);
foreach($selectedPictures as $pix){
$image = imagecreatefrompng($pathPictures[$a].$pix);
imagecopy($final_img, $image, 0, 0, 0, 0, $x, $y);
imagealphablending($image, false);
imagesavealpha($image, true);
};
imagepng($final_img, $pathPictures[$a].'custom/'.$pixName.'.png');
};
echo $pathSmall.'custom/'.$pixName.'.png';
感谢您的帮助,祝您度过愉快的一天!