如何在 python gtk 应用程序中使用 webkit 视图提供静态文件?

发布于 2024-10-06 00:09:52 字数 261 浏览 1 评论 0原文

我正在构建一个 gtk 桌面应用程序。我的视图的主要部分是 HTML。因此我使用了 Webkit 的 Python 实现。问题是,我无法包含图像,因为 Webkit 不允许从本地文件系统加载图像:

<img src="file://{{media_url}}_theme/media/img/eft.png"/>

=>这将导致“不允许加载本地资源”。

有没有办法在本地加载图像或 css 文件等静态文件?

I am building a gtk desktop application. The main part of my views are HTML. So I make use of the Python implementation of Webkit. The problem is, that I cant include images, as Webkit does not allow to load images from local file system:

<img src="file://{{media_url}}_theme/media/img/eft.png"/>

=> This will cause a "Not allowed to load local resource".

Is there a way to load static files like images or css-files locally?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

铃予 2024-10-13 00:09:52

您可以使用 base64 将图像编码为可包含在 html 页面中的文本。

You can use base64 to encode your images as texts that can be included in your html pages.

独夜无伴 2024-10-13 00:09:52

@Skami 18 的答案似乎是一个很好的方向。也许然后使用 数据 URI 来实际设置 src 属性?

@Skami 18's answer seems like a good direction. Maybe then use a data URI to actually set the src attribute?

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