On Dec 16, 2007 6:08 PM, Donn &lt;<a href="mailto:donn.ingle@gmail.com">donn.ingle@gmail.com</a>&gt; wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Could you start again and explain what you want a little better?<br></blockquote></div><br>I would like to draw a rectangle in Cairo and save it as PDF or SVG.<br><br>But, the rectagle would have no stroke and no fill. No stroke like in not calling stroke(), same for fill.
<br><br>When I draw a ractange, like move_to(0, 0), line_to(0, 10), line_to(10, 10), line_to(10, 0), (maybe close_path) and stroke(), in SVG it creates a node like:<br>&lt;path d=&quot;M0,0 L0,10 10,10 10,0&quot; style=&quot;stoke: some-default-color&quot; /&gt;
<br><br>Now, instead of &quot;some-default-color&quot; I would like to have &quot;none&quot;. Is it possible?<br>