最小的 Java SVG 引擎
实际工作的最小的 Java SVG 引擎(最少/最小的 jar)是什么? 如果您的答案是蜡染,那么最小深度是多少。 让它在简单的 Java 应用程序中工作的图表?
我查看了 Batik 站点上的依赖关系图,但它看起来像是典型的 Apache 混乱。 有更好的选择吗?
What is the smallest Java SVG engine (least/smallest jars) that actually works? If your answer is Batik, what is the minimal dep. graph for getting this to work in a simple Java application?
I've looked at the dependency graph on the Batik site, but it looks like a typical Apache mess. Are there better alternatives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SVG Salamander 声称要小得多,感谢 Batik。 很难不相信他们。 我不能说它是否功能齐全,但一位同事对此表示好评。
SVG Salamander claims to be much smaller thank Batik. It's hard not to believe them. Whether it's as full featured, I can't say, but a co-worker said good things about it.
另一个选择是JFreeSVG,jar文件只有45k(它提供了一个
SVGGraphics2D
实现不仅小而且快 - 请参阅这篇博文了解详情)。Another option is JFreeSVG, the jar file is 45k only (it provides an
SVGGraphics2D
implementation that is not only small but also fast - see this blog post for details).