处理 GD 库时不必要地改变颜色
我正在将多个小图像合并成矩形马赛克。
当处理少量源图像时,结果很好:
但是当处理大量源图像时来源结果显示类似棕褐色的效果:
我应该使用任何技术来保留颜色吗?
我合并图像的方法本质上是运行一个脚本,该脚本使用 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:
But when dealing with a larger number of sources it turns out a sepia like effect:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有使用 imagecreate() 作为起点,而是改为 imagecreatetruecolor(),它解决了颜色丢失问题。
instead of using imagecreate() as my starting point, I changed to imagecreatetruecolor() and it has resolve the color loss issue.