Hello,
I am trying to use SVGGraphics2D class of batik to get  an SVG result;
What I want to get in the resulting SVG the following:
<rect x="445" y="50" width="119" height="150"   fill="green" stroke="blue"
stroke-width="1"/>

But looking at the SVGGraphics2D class I only find function to draw  a
rectangle or to fill it  (fill(Rect) and draw(Rect);)
Using these functions I get the following result:
 <rect x="445" y="50" width="119" height="150"    fill="none" stroke="blue"
stroke-width="1"/>
 <rect x="445" y="50" width="119" height="150"    fill="green" />

Is there a way that I can use so that the resulting svg will only contain
one rectangle definition including properly the stroke and fill attributes;


Thanks
Best regards

Jean-Fran�ois Selber




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to