gpt4 book ai didi

php - 更改图像背景

转载 作者:行者123 更新时间:2023-12-04 00:45:39 25 4
gpt4 key购买 nike

现在我得到了一张白色背景的图片,但想把它改成别的东西......

我试过使用 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);

最佳答案

Google 图表 API 似乎正在创建真彩色图像。注意:

[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);

结果:

enter image description here

关于php - 更改图像背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10802351/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com