1

在我的服务器上使用 GD Imagepng() 时遇到了麻烦。我的代码在我的本地计算机上运行良好,正确创建文件,正确保存,但在我的服务器上不行。

我看了很多帖子,尝试了很多事情都没有成功。所有 GD 元素均已启用。如果我直接在页面中输出图片而不尝试保存它,它可以工作,但是一旦我尝试保存它,它就不再工作了。“自定义”文件夹的权限设置为 777。我的 php 文件的 id 编码为 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';

感谢您的帮助,祝您有美好的一天!

4

0 回答 0