現在,我得到這個圖像與白色背景,但希望將其更改爲別的東西......更改圖像背景
我使用imagecolorset試過,用一個16777215指數(它是白色的),但它不會工作D:
任何其他誰有這個問題?甚至更好,知道如何解決它?
代碼:
$img = imagecreatefrompng("http://chart.apis.google.com/chart?cht=qr&chs=300x300&chl=hellow");
$index = imagecolorat($img, 0, 0);
imagecolorset($img, $index, 0, 0, 255);
header("content-type:image/png");
imagepng($img);
imagedestroy($img);
嘗試使用'imagecreatefromstring',而不是'imagecreatefrompng' –
沒有工作怎麼樣?沒有圖像輸出?錯誤的圖像?錯誤的背景? –
@DamienPirsy'imagecreatefromstring'將不起作用... @MarcB沒有任何改變 – Mobilpadde