What SVG toolkit would you recommend to use in Java?

As a follow up to another question, I was wondering what would be the best way to use SVG in a Java project.

+4
source share
2 answers

Apache Batik project is an open source SVG rendering engine written in Java. You can transfer its SVG file or create a document programmatically through the DOM API, accessible from Java code.

+4
source

In addition to Batik, there is also the SVG Salamander .

Personally, I prever Salamander, it does not support all the features of SVG, for example. Gaussian blur.

+2
source

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


All Articles