- From: Victor Sinceac <vsinceac@webraska.com>
- Date: Tue, 27 Jun 2000 11:38:12 +0200
- To: "W3C SVG NewsGroup" <www-svg@w3.org>, <Stepan.Rybar@ceu.cz>
Received on Tuesday, 27 June 2000 05:38:25 UTC
For interested persons: There is the way to enable LowQuality rendering (without antialiasing) by default, when rendering a svg file embeded in html, with AdobeSVGV : -------------------------------------------------------------------------------- <HTML> .......................... <BODY onload="DefaultQuality();"> <EMBED WIDTH="640" HEIGHT="480" SRC="xxx.svg" NAME="xxx"/> ......................... </BODY> </HTML> <script language="JavaScript"> .............. function DefaultQuality() { document.xxx.setDefaultAntialias(0); } </script> -------------------------------------------------------------------------------- Victor
Received on Tuesday, 27 June 2000 05:38:25 UTC