Re: Module to read svg

2007-01-09 Thread Robert Kern
Tim Roberts wrote: > Robert Kern <[EMAIL PROTECTED]> wrote: > >> Martin v. Löwis wrote: >>> [EMAIL PROTECTED] schrieb: Does anyone know if there's an actual free implementation of this? >>> For the dom module in it, xml.dom.minidom should work. Depending on >>> your processing needs, that mig

Re: Module to read svg

2007-01-09 Thread Tim Roberts
Robert Kern <[EMAIL PROTECTED]> wrote: >Martin v. Löwis wrote: >> [EMAIL PROTECTED] schrieb: >>> Does anyone know if there's an actual free implementation of this? >> >> For the dom module in it, xml.dom.minidom should work. Depending on >> your processing needs, that might be sufficient. > >I do

Re: Module to read svg

2007-01-08 Thread Martin v. Löwis
Robert Kern schrieb: >>> Does anyone know if there's an actual free implementation of this? >> For the dom module in it, xml.dom.minidom should work. Depending on >> your processing needs, that might be sufficient. > > I don't think it quite fits what the OP is asking for. SVG defines some > non-

Re: Module to read svg

2007-01-08 Thread Stefan Behnel
[EMAIL PROTECTED] wrote: > I'm looking for a module to load an SVG document so that I can read out > its contents in some graphics-centric way. For example, path elements > store their vertices in a long attribute string you need to parse. An > ideal module would get me these vertices in a list. >

Re: Module to read svg

2007-01-08 Thread Robert Kern
Martin v. Löwis wrote: > [EMAIL PROTECTED] schrieb: >> Does anyone know if there's an actual free implementation of this? > > For the dom module in it, xml.dom.minidom should work. Depending on > your processing needs, that might be sufficient. I don't think it quite fits what the OP is asking fo

Re: Module to read svg

2007-01-07 Thread Martin v. Löwis
[EMAIL PROTECTED] schrieb: > Does anyone know if there's an actual free implementation of this? For the dom module in it, xml.dom.minidom should work. Depending on your processing needs, that might be sufficient. Regards, Martin -- http://mail.python.org/mailman/listinfo/python-list

Module to read svg

2007-01-07 Thread [EMAIL PROTECTED]
I'm looking for a module to load an SVG document so that I can read out its contents in some graphics-centric way. For example, path elements store their vertices in a long attribute string you need to parse. An ideal module would get me these vertices in a list. SVGdraw seems to only write, but n