控制 QtWebKit 如何调整图像大小
<img width='500' height='500' src='image.png'>
image.png 大于 500x500,因此当我显示它时,webkit 会自动调整它的大小。 问题是质量非常差。
我的猜测是它使用了最近邻算法或类似的算法,因此结果还有很多不足之处。
是否可以使用双三次来代替,因为在这种情况下图像质量比速度重要得多。
相比之下,chrome 在调整图像大小方面要好得多,所以我猜它也使用了 webkit。
请注意,我使用的是 QWebView 小部件和 PyQt,并且首选 Python 中的示例代码,因为我不是 C++ 程序员,因此我很难将 C++ 转换为 Python。
<img width='500' height='500' src='image.png'>
image.png is larger than 500x500 so when I display it webkit automatically resizes it.
The problem is the quality is very poor.
My guess is it uses a nearest-neighbor algorithm or something similar and so the result leaves much to be desired.
Is it possible to make it use bicubic instead as image quality is significantly more important than speed in this case.
In contrast chrome is much better at resizing images so I'm guess it also uses webkit.
Note that I'm using a QWebView widget and PyQt, and example code in python is prefered as I'm not a c++ programmer so its hard for me to translate c++ to python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://doc.qt.nokia.com/4.7-snapshot /qwebview.html#renderHints-prop
http://doc.qt.nokia.com/4.7-snapshot/qwebview.html#renderHints-prop