SVG Library for Java

Is there a Java library that provides a component way to create SVG documents?

I don't need to display SVG, all I want to do is build the SVG tree in a programmatic and safe way.

+6
source share
2 answers

Batik should do everything perfectly: itโ€™s not only for rendering, you can create and manipulate SVG with it.

+5
source

Here is an example of using Batik to download and manage the SVG DOM:

http://xmlgraphics.apache.org/batik/using/dom-api.html

+2
source

Source: https://habr.com/ru/post/892534/


All Articles