SVG building library for Java [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this questionIs there a Java library that provides a component-based way to create SVG documents?
I don't need to render SVG, all I want to do is to construct an SVG tree programmatically and in a type-safe way.
Batik should do just fine: its not just for rendering, you can do SVG construction/manipulation with it.
Here is an example of how to use Batik to bootstrap and manipulate the SVG DOM:
http://xmlgraphics.apache.org/batik/using/dom-api.html
精彩评论