QtWebKit - 如何显示数据库中的二进制图像?

发布于 2024-11-15 04:57:54 字数 143 浏览 3 评论 0原文

我将图像以二进制格式存储在 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 技术交流群。

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

发布评论

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

评论(3

懒猫 2024-11-22 04:57:54

一种方法可能是为这些内部资源实现您自己的 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.

一身软味 2024-11-22 04:57:54

如果图像不是那么大,您还可以查看 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.

不…忘初心 2024-11-22 04:57:54

这个SO问题

基本上提取图像并存储在磁盘上。然后使用 QWebViewsetHtml() 方法>
设置指向您的图像的 html。

这意味着 html 必须包含

<img src='your path on disk'> 

标签。

对我来说这似乎比实现协议更容易。

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

<img src='your path on disk'> 

tags.

This seems easier to me than implementing a protocol.

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