PHP - 将背景颜色更改为透明

标签 php gd

我需要将 PNG 图片 ( https://chart.googleapis.com/chart?cht=lxy&chd=e:AACIERGZIiKqMzO7RETMVVXdZmbud3f.iIkQmZohqqsyu7xDzM1U3d5l7u92,hhiIivfFmZZmcCY.YYZmTgdQjWd3kk6g880asfu7r4sf4E22tGtGsfzzmZj9&chds=0.0,1.0&chs=105x75&chma=1,0,1,1&chco=42b6c9ff&chls=2.5,1.0,0.0&chxl=0:%7C%7C1:%7C%7C2:%7C ) 的背景颜色更改为透明。我使用以下在我看来正确的代码:

$picture = imagecreatefrompng("https://chart.googleapis.com/chart?cht=lxy&chd=e:AACIERGZIiKqMzO7RETMVVXdZmbud3f.iIkQmZohqqsyu7xDzM1U3d5l7u92,hhiIivfFmZZmcCY.YYZmTgdQjWd3kk6g880asfu7r4sf4E22tGtGsfzzmZj9&chds=0.0,1.0&chs=105x75&chma=1,0,1,1&chco=42b6c9ff&chls=2.5,1.0,0.0&chxl=0:%7C%7C1:%7C%7C2:%7C");

$img_w = imagesx($picture);
$img_h = imagesy($picture);

imagealphablending($picture, false);        
imagesavealpha($picture, true);

$rgb =  imagecolorexact ($picture, 255,255,255);//imagecolorat($picture, 50, 50);
imagecolortransparent($picture, $rgb);

imagepng($picture, '../images/chart2.png');
imagedestroy($picture);

我也使用 imagecolorat 来检测准确的颜色,但结果是一样的——它不起作用(背景是白色的(不透明))!我的错误是什么?

可能重复:PHP: How to make a green area (background) in an image transparent?imagecolortransparent in PHP not working

最佳答案

我已经解决了这个问题:

<? 
$picture = imagecreatefrompng("../images/chart.png");

$img_w = imagesx($picture);
$img_h = imagesy($picture);

$newPicture = imagecreatetruecolor( $img_w, $img_h );
imagesavealpha( $newPicture, true );
$rgb = imagecolorallocatealpha( $newPicture, 0, 0, 0, 127 );
imagefill( $newPicture, 0, 0, $rgb );

$color = imagecolorat( $picture, $img_w-1, 1);

for( $x = 0; $x < $img_w; $x++ ) {
    for( $y = 0; $y < $img_h; $y++ ) {
        $c = imagecolorat( $picture, $x, $y );
        if($color!=$c){         
            imagesetpixel( $newPicture, $x, $y,    $c);             
        }           
    }
}

imagepng($newPicture, '../images/chart2.png');
imagedestroy($newPicture);
imagedestroy($picture);

我希望它能帮助到其他人。

关于PHP - 将背景颜色更改为透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16660729/

相关文章:

php - 如果 mysql 表不存在则创建

PHP imagecopy去除png的颜色

PHP GD 文本边框显示不正确且透明

php - 将图像 move 到底部

php - 将数据从一个表插入到另一个表中

php - 外部 Webroot 的定义

php - 301 重定向但排除子目录

c# - winform进度条中的动画条

php - 如何使用 PHP 调整图像上的水印大小?

php - 正确设置我的 mysql 表