3

今、私は白い背景のこの画像を手に入れましたが、それを別のものに変更したいです...

インデックスが 16777215 (白) のimagecolorsetを使用してみましたが、機能しません 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);
4

1 に答える 1

5

Google チャート API が Truecolor 画像を作成しているようです。ノート:

[ghoti@pc ~]$ 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";

[ghoti@pc ~]$ php imgtest1.php 
Colours before: 0
Colours after:  2
[ghoti@pc ~]$ 

したがって、でパレット画像に変換すると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);

そして結果:

ここに画像の説明を入力

于 2012-05-29T17:16:09.863 に答える