richard wrote:[color=blue]
> Dennis Benzinger wrote:[color=green]
>>Does anybody know of a SVG rendering library for Python?[/color]
> Google "python svg"[/color]
You might be able to use AGG (anti grain geometry) to do svg to raster image
conversion. I think there are python bindings for AGG. I know matplotlib
uses AGG, but not for SVG rendering.
-Chris
On Wed, Dec 14, 2005 at 10:59:17PM +0100, Dennis Benzinger wrote:[color=blue]
> Hi!
>
> Does anybody know of a SVG rendering library for Python?
>
> Bye,
> Dennis
> --
> http://mail.python.org/mailman/listinfo/python-list[/color]
Andreas Lobinger wrote:[color=blue]
> richard wrote:[color=green]
>> Dennis Benzinger wrote:[color=darkred]
>>>Does anybody know of a SVG rendering library for Python?[/color]
>> Google "python svg"[/color]
>
> ... to find what?[/color]
Matplotlib also has an SVG renderer. Just save the file with an SVG
extension or choose "SVG" as your default backend in the rc file http://matplotlib.sf.net/matplotlibrc.
On Fri, Dec 16, 2005 at 01:58:40PM +1100, richard wrote:[color=blue]
> Andreas Lobinger wrote:[color=green]
> > richard wrote:[color=darkred]
> >> Dennis Benzinger wrote:
> >>>Does anybody know of a SVG rendering library for Python?
> >> Google "python svg"[/color]
> >
> > ... to find what?[/color]
>
> The answer to the OP's question.[/color]
The OP's question is ambiguous. Does he want to render something to SVG? or
does he want to render an existing SVG file to a raster format. I would guess
the latter, apparently you think he means the former. Luckily for the OP we
both posted an answer for what we thought he was asking so he will have an
answer either way :)
[color=blue]
>
>
> Richard
>
> --
> http://mail.python.org/mailman/listinfo/python-list[/color]
Comment