Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVG building library for Java [closed]

Tags:

java

svg

Is 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.

like image 910
biziclop Avatar asked Jul 11 '11 21:07

biziclop


2 Answers

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

like image 152
jbeard4 Avatar answered Nov 16 '22 09:11

jbeard4


Batik should do just fine: its not just for rendering, you can do SVG construction/manipulation with it.

like image 8
Femi Avatar answered Nov 16 '22 09:11

Femi