处理 GD 库时不必要地改变颜色

发布于 2024-08-24 06:10:57 字数 388 浏览 7 评论 0原文

我正在将多个小图像合并成矩形马赛克。

当处理少量源图像时,结果很好:

在此处输入图像描述

但是当处理大量源图像时来源结果显示类似棕褐色的效果:

在此处输入图像描述

我应该使用任何技术来保留颜色吗?

我合并图像的方法本质上是运行一个脚本,该脚本使用 imagecreatefromjpeg() 循环遍历源图像来抓取它,然后使用 imagecopy() 将源图像合并到集体目标图像(并运行直到添加/放置所有图像)。

I'm merging multiple small images into a rectangular mosaic.

When dealing with a small number of source images it turns out fine:

enter image description here

But when dealing with a larger number of sources it turns out a sepia like effect:

enter image description here

Is there any technique I should be used to preserve the colors?

My method for merging the images is essentially running a script that loops through the source images using imagecreatefromjpeg() to grab it, followed by imagecopy() to merge the source onto the collective destination image (and runs until all images have been added/placed).

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

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

发布评论

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

评论(1

一曲爱恨情仇 2024-08-31 06:10:57

我没有使用 imagecreate() 作为起点,而是改为 imagecreatetruecolor(),它解决了颜色丢失问题。

instead of using imagecreate() as my starting point, I changed to imagecreatetruecolor() and it has resolve the color loss issue.

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