I need to change background color of PNG picture ( 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: 画像の緑色の領域 (背景) を透明にする方法は? PHPの imagecolortransparent が機能しない