Font font=new Font("Arial", Font.PLAIN, 1);
font=font.deriveFont(15.5f);
g2d.setFont(font);
g2d.drawString("Hello Java 2D to SVG", 40, 40);
}
It produces such output:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; text-rendering:auto; stroke:black; stroke-linecap:square; stroke-miterlimit:10; shape-rendering:auto; stroke-opacity:1; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'sansserif'; font-style:normal; stroke-linejoin:miter; font-size:12; stroke-dashoffset:0; image-rendering:auto;" xmlns="http://www.w3.org/2000/svg">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<g style="font-family:'Arial'; font-size:16;">
<text xml:space="preserve" x="40" y="40" style="stroke:none;">Hello Java 2D to SVG
</text>
</g>
</g>
</svg>