在 SWT 浏览器组件中使用图像
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将它们转换为 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
如果您的插件是基于目录的,而不是基于 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 formatplatform:/<plugin>/<path>
to afile:<filename>
... exactly what you need.