Thomas DeWeese wrote:

>> A little bit off topic, does the shape-rendering and text-rendering is
>> inherited (by default) by child element or I must specify those
>> attributes on each element ?
>
>
>    They are CSS properties, so they are inherited down a subtree
> unless something (style rule or what ever) changes it.

BTW, if you care about the accuracy of the rendering image, I
recommend using "geometricPrecision".  We have a drawing application
and this made a big difference in quality, at some expense in speed.

For performance, we draw using Java2D, and then at "mouse up" we
convert these to SVG.  Prior to specifying the shape-rendering
property, the SVG rendition of the objects did not match the Java2D
rendering, and so you would see "movement" as the canvas rendered all
of the lines.  With geometricPrecision there is less dancing around,
and the resulting image is more faithful.

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



Reply via email to