Which SVG toolkit would you recommend to use in Java?
java, svg
Solution
The Apache Batik project is an open source SVG renderer written in Java. You can pass it an SVG file, or create a document programatically via a DOM-style API accesssible from Java code.
Problem
As a follow-up to another question, I was wondering what would be the best way to use SVG in a Java project.