Qt C++ QWebView图像质量
我注意到,网页上的某些图像质量很差(尖角,没有抗锯齿)。我使用 Qt 4.7.4。在Qt 4.8.0 RC1中没有发现这个bug(我测试过,一切OK)。如何消除这个错误?
更新:示例 http://piccy.info/view3/2305599/c2991408a666393dd49bbcc938ad2f9f/ - Qt 4.7.4 http://piccy.info/view3/2305604/9ac2408088af261edef3b852c4127414/ - Qt 4.8.0 RC1
在 jpeg 格式的网页图像上。我可以消除这种影响吗?
I notice, that some image on webpage has bad quality (sharp corners, no anti-aliasing). I use Qt 4.7.4. This bug not found in Qt 4.8.0 RC1 (I've tested, all OK). How to remove this bug?
Update: examples
http://piccy.info/view3/2305599/c2991408a666393dd49bbcc938ad2f9f/ - Qt 4.7.4
http://piccy.info/view3/2305604/9ac2408088af261edef3b852c4127414/ - Qt 4.8.0 RC1
On webpage images in jpeg. Can I remove this effects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它在 Qt 4.8.0 中得到解决,您有两个选择,要么作为 RC 升级(这对于生产应用程序来说是有风险的)/等到 4.8 准备好生产(很快),要么我个人最喜欢的是拉 QtWebKit 2.2进入您的开发环境。这并不简单,但您会发现它是可行的。
或者向后移植它的修复程序,这可能比将 2.2 集成到您的构建中更困难。
If it's resolved in Qt 4.8.0 you have two options, upgrade to it either as the RC (which for a production app is risky)/ wait until 4.8 is production ready (soon-ish) or my personal favourite which is pull QtWebKit 2.2 into your development environment. It's not straight forward, but you'll find that it's doable.
Or backport the fix for it, which will be probably more difficult than integrating 2.2 into your build.