2012-05-29 285 views
2

現在,我得到這個圖像與白色背景,但希望將其更改爲別的東西......更改圖像背景

我使用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); 
+0

嘗試使用'imagecreatefromstring',而不是'imagecreatefrompng' –

+0

沒有工作怎麼樣?沒有圖像輸出?錯誤的圖像?錯誤的背景? –

+0

@DamienPirsy'imagecreatefromstring'將不起作用... @MarcB沒有任何改變 – Mobilpadde

回答

4

看來,谷歌圖表API是創建真彩圖像。注:

[[email protected] ~]$ cat imgtest1.php 
<?php 

$url = "http://chart.apis.google.com/chart?cht=qr&chs=300x300&chl=hello"; 
$img = imagecreatefrompng($url); 

print "Colours before: " . imagecolorstotal($img) . "\n"; 
imagetruecolortopalette($img, FALSE, 2); 
print "Colours after: " . imagecolorstotal($img) . "\n"; 

[[email protected] ~]$ php imgtest1.php 
Colours before: 0 
Colours after: 2 
[[email protected] ~]$ 

所以轉換成調色板圖像與imagetruecolortopalette()似乎解決您的問題。

<?php 

$url = "http://chart.apis.google.com/chart?cht=qr&chs=100x100&chl=hello"; 
$img = imagecreatefrompng($url);   # fetch the image 
imagetruecolortopalette($img, FALSE, 2); # convert image from TC to palette 
$bg = imagecolorat($img, 0, 0);   # get the bg colour's index in palette 
imagecolorset($img, $bg, 0, 0, 255);  # make it blue 

header("content-type:image/png"); 
imagepng($img); 
imagedestroy($img); 

而結果:

enter image description here

+0

真棒謝謝:D – Mobilpadde

+0

+1你的愛與命令行PHP很有趣 – Baba