在 SWT 浏览器组件中使用图像

发布于 2024-12-22 22:41:14 字数 119 浏览 1 评论 0原文

在 SWT 浏览器组件中使用图像的最佳方式是什么?目前,我将图像流式传输到临时文件夹并使用它们的位置来显示它们。有没有更好的方法在 SWT 浏览器组件中使用这些图像,特别是来自平台插件的图像。

此致, 克沙夫

Whats the best way of using images in SWT Browser component. Currently i stream the images to temp folder and use their location for displaying them. Is there any better way of using these images in the SWT Browser component, particulary images from the platform plugins.

Best Regards,
Keshav

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

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

发布评论

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

评论(2

涙—继续流 2024-12-29 22:41:14

将它们转换为 DataURI 并直接将它们插入到 HTML 中。

http://en.wikipedia.org/wiki/Data_URI_scheme

Convert them to a DataURI and insert them into the HTML directly.

http://en.wikipedia.org/wiki/Data_URI_scheme

忆梦 2024-12-29 22:41:14

如果您的插件是基于目录的,而不是基于 jar 的,您可以直接使用插件中的文件。有几种方法可以查找包的资源条目的文件名 - 我更喜欢 FileLocator.toFileURL(URL) ,它将 URL 转换为 platform:// 格式文件的...正是您所需要的。

If your plug-in is directory-based - rather than jar-based - you can use the files in the plug-in directly. The are several ways to find the file name of an resource entry of a bundle - I prefer FileLocator.toFileURL(URL) which converts an URL on the format platform:/<plugin>/<path> to a file:<filename>... exactly what you need.

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