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

发布于 2024-08-07 22:07:03 字数 18 浏览 3 评论 0 原文

GD 如何做到这一点?

How to do that with GD?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

落叶缤纷 2024-08-14 22:07:03

使用 (t) .net/imagesx" rel="noreferrer">与源图像尺寸相同,然后复制 (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 设置,然后再尝试使用较大的图像。

Create a new truecolor image resource (t) with the same dimensions as the source image (s) and then copy (s) to (t).

e.g. (without error handling):

$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

You'll have both images in memory in the gd2 format (4 bytes per pixel? 5?), so you better check your memory_limit setting before trying this with larger images.

得不到的就毁灭 2024-08-14 22:07:03

从 PHP 5.5 开始,有一个快速、简单且占用内存较少的解决方案:只需使用 imagepalettetotruecolor PHP 函数:

$imgSource = imagecreatefromgif('xyz.gif');
if (!imageistruecolor($imgSource)) {
    imagepalettetotruecolor($imgSource);
}

Since PHP 5.5 there's a fast, easy and less memory-hungry solution: just use the imagepalettetotruecolor PHP function:

$imgSource = imagecreatefromgif('xyz.gif');
if (!imageistruecolor($imgSource)) {
    imagepalettetotruecolor($imgSource);
}
予囚 2024-08-14 22:07:03

您需要做的就是使用 imagecreatetruecolor 创建一个新图像,然后 imagecopy 将基于调色板的图像复制到其上。

All you need to do is use imagecreatetruecolor to create a new image and then imagecopy your palette-based image onto it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文