PHP GD 库质量下降。还有其他想法吗?
我正在开发一个处理照片的网站。用户上传他们的原始照片,GD 库会创建同一张照片的较小尺寸的图像。然而,当将手动缩小的图像与 GD 图像进行比较时,GD 图像似乎损失了相当多的颜色质量,就像它稍微降低了饱和度一样。有什么替代建议或改进方法吗?
谢谢!
So I'm in the middle of working on a website that deals with photographs. A user uploads their original photograph and GD library creates a smaller sized image of the same photo. However, when comparing a manually sized down image with the GD one, the GD image seems to lose quite a bit of color quality like it had been slightly desaturated. Any alternate suggestions or ways to improve this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议使用 imagemagick 来处理有关照片的任何严重问题。
除了质量之外,你会发现使用 imagick 等功能更方便
I'd advice using imagemagick for handling anything serious about photos.
besides quality, you'll find using imagick functions like more convenient
使用
imagecopyresampled
而不是imagecopyresampled
php.net/manual/en/function.imagecopyresized.php" rel="nofollow noreferrer">imagecopyresized
。它提供了更好的质量。另外,尽量不要使用GIF
图像作为输出。Use
imagecopyresampled
instead ofimagecopyresized
. It gives much better quality. Also, try NOT to useGIF
images as output.哇,答案是 imagemagick。更易于使用并保持完整的照片质量!
Wow, the answer is imagemagick. Easier to use and maintains the full photograph quality!