What is the best way to draw an SVG images to EPS files in Java? Like I understood I could parse the SVG file by myself and then draw every shape/line/whatever with VectorGraphics2D via the graphics interface to an EPS File. The problem is that then I have to find a corresponding method for every SVG Command in Java graphics.
Is there any Library that can convert SVG files to EPS, or what can draw the individual SVG commands to an graphics context?