gpt4 book ai didi

PHP:如何将非真彩色图像转换为真彩色图像?

转载 作者:可可西里 更新时间:2023-11-01 00:07:48 26 4
gpt4 key购买 nike

如何使用 GD 做到这一点?

最佳答案

Create a new truecolor image resource (t) 与 same dimensions作为源图像,然后 copy (s) 到 (t)。

例如(没有错误处理):

$imgSource = imagecreatefromgif('xyz.gif');
$width = imagesx($imgSource);
$height = imagesy($imgSource);
$imgTC = imagecreatetruecolor($width, $height);
imagecopy($imgTC, $imgSource, 0, 0, 0, 0, $width, $height);
// save or send $imgTC

您将以 gd2 格式(每像素 4 个字节?5 个字节?)在内存中保存两个图像,因此您最好检查一下 memory_limit在尝试使用较大的图像之前进行设置。

关于PHP:如何将非真彩色图像转换为真彩色图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1578586/

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