tags:

views:

226

answers:

2

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

+4  A: 

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.

sk
A: 

Besides Batik there is also SVG Salamander.

Personally I prever Salamander, it only doesn't support all SVG features, eg. Gaussian blurring.

Waverick