QtWebKit - 如何显示数据库中的二进制图像?
我将图像以二进制格式存储在 SQLite 数据库(客户端)中,并在桌面应用程序中使用 QtWebKit。
除了需要显示存储在数据库中的二进制图像之外,一切正常。
如何在 QtWebKit 中显示数据库中的二进制图像?
谢谢。
I store images in binary format in SQLite database (client side) and use QtWebKit inside a desktop application.
Everything works fine beside the need to display stored in the database binary images.
How to display a binary image from database in QtWebKit?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一种方法可能是为这些内部资源实现您自己的 URL 方案,例如 mydb://foo.png - 请参阅 这篇文章 概述了如何做到这一点。
One way might be to implement your own URL scheme for these internal resources, e.g. mydb://foo.png - see this article for an overview of how this can be done.
如果图像不是那么大,您还可以查看
data
URL 方案。例如,请参阅此问题。If the images are not that big, you could also have a look at the
data
URL scheme. See this question for example.这个SO问题
基本上提取图像并存储在磁盘上。然后使用 QWebViewsetHtml() 方法>
设置指向您的图像的 html。
这意味着 html 必须包含
标签。
对我来说这似乎比实现协议更容易。
Instead of adding a new protocol a simple solution is given in this SO question
Basically extract the image and store on your disk. Then use setHtml() method of QWebView
to set an html that points to your image.
Meaning the html must contain
tags.
This seems easier to me than implementing a protocol.