如何在 Eclipse 中显示 SVG?
我是 Eclipse 新手,正在尝试在 Eclipse 程序中显示 SVG 文件。我已经下载了 Batik 插件并安装了它。这是我第一次使用插件,所以我什么都不知道。我想在单击按钮时显示 SVG 图片。谢谢。
I'm new to Eclipse and trying to display a SVG file in an Eclipse program. I have downloaded Batik plugin and installed it. This is my first time working with plugins so I don't know anything. I would like to display a SVG picture when I click on a button. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种可能的选择是使用嵌入式 SWT 浏览器打开视图/编辑器。现在许多浏览器都支持 SVG 内容,因此您可以在 HTML 文档中生成内联 SVG 并设置浏览器来显示它。请参阅http://dev.eclipse.org/viewcvs/viewvc.cgi/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet136.java?view=co 和其他 http://www.eclipse.org/swt/snippets/
One possible option is to open a view/editor with the embedded SWT browser. Many browsers now support SVG content, so you could generate inline SVG inside an HTML document and set the browser to display it. See http://dev.eclipse.org/viewcvs/viewvc.cgi/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet136.java?view=co and others at http://www.eclipse.org/swt/snippets/
试试这个图像编辑器插件。 http://marketplace.eclipse.org/content/docfacto-toolkit#.UujWxmTFIhg。工具包中包含图像编辑器“Beermat”。希望它能解决您的问题。
Try this image editor plugin. http://marketplace.eclipse.org/content/docfacto-toolkit#.UujWxmTFIhg. An image editor "Beermat" is included in the toolkit. Hope it solves your problem.