使用 Lanczo 算法调整网页图像大小 - 我该使用哪种语言?
我需要制作一个使用 Lanczo 算法的在线图像大小调整程序,我听说这是减小图像大小的最佳算法。我该怎么做呢?我了解 PHP,但如果需要,我愿意学习其他语言。
我知道PHP确实有自己的图像调整大小功能,但与Lanczo的相比不是很好,那么是否可以将PHP调整大小算法更改为Lanczo的?
如果没有,是否有其他编程语言可以更轻松地编写图像调整大小工具?
谢谢
I need to make an online image resizing program that uses the Lanczo's Algorithm, which I hear is the best algorithm to reduce image size. How would I go about doing this? I have knowledge of PHP but I'm willing to learn other languages if I need to.
I understand that PHP does have it's own image resize function, but it's not very good compared to Lanczo's so would it be possible to change the PHP resize algorithm to Lanczo's?
If not, are there are other programming languages that make it easier to write an image resize tool in?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ImageMagick 可以利用 Lanczo 的算法:
http://php.net/manual/en/function .imagick-resizeimage.php
(查看过滤器参数)
ImageMagick can utilize Lanczo's algorithm:
http://php.net/manual/en/function.imagick-resizeimage.php
(check out the filter argument)