RE: [svg-developers] Re: Performance question

2005-10-06 Thread julie gautier
Thanks for your quick answer. In my svg file, I have first a javascript section that contains an array that have the same nb of lines (36000) Then here is a part of my svg file section where circles are drawn : svg x=5 y=5 width=600px height=550px viewBox=-98726 -98726 1238168 1134010 g rect

Re: [svg-developers] Re: Performance question

2005-10-06 Thread Andre M. Winter - Carto.net
hi julie, there is no real workaround. (trop c'est trop.) some possibilities although: - switch of anti-aliasing - try to render rectangles rather than circles. if they are that small that won't make any difference. i did some tests a year ago with randomly generated basic shapes. in order

Re: [svg-developers] Re: Performance question

2005-10-06 Thread julie gautier
What do you mean by switch of anti-aliasing ? Concerning your suggestion of create rectangles instead of circles, why not... I'll test it. I don't understand neither your last suggestion. What I do is to generate the file using Batik, so each circle is written inside a loop (creating the circle

Re: [svg-developers] Re: Performance question

2005-10-06 Thread Andre M. Winter - Carto.net
hi julie, What do you mean by switch of anti-aliasing ? check out http://www.w3.org/TR/SVG11/painting.html#ShapeRenderingProperty ASV supports that. Concerning your suggestion of create rectangles instead of circles, why not... I'll test it. I don't understand neither your last

RE: [svg-developers] Re: Performance question

2005-10-06 Thread julie gautier
I create the circles on the server, so when the svg is displayed, the circles are already written in the file. But what you say is important because I was wondering if it could be faster if I'd create the circles by using a javascript function when loading the document... So the response seems