控制 QtWebKit 如何调整图像大小

发布于 2024-12-09 07:24:35 字数 373 浏览 0 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(1

偏爱你一生 2024-12-16 07:24:35
from PyQt4.QtGui import QPainter

yourQWebView.setRenderHints(QPainter.TextAntialiasing | QPainter.SmoothPixmapTransform | QPainter.HighQualityAntialiasing)

http://doc.qt.nokia.com/4.7-snapshot /qwebview.html#renderHints-prop

from PyQt4.QtGui import QPainter

yourQWebView.setRenderHints(QPainter.TextAntialiasing | QPainter.SmoothPixmapTransform | QPainter.HighQualityAntialiasing)

http://doc.qt.nokia.com/4.7-snapshot/qwebview.html#renderHints-prop

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