Playing with SVG...

Tobias Kieslich tobias at justdreams.de
Sat Sep 30 23:46:23 CEST 2006


On Sat, Sep 30, 2006 at 22:18:15 +0200, Olivier Fourdan wrote:
> Q: The PNG theme doesn't look exactly the same as the SCG one
> A: Yes, I know, it seems inkscape doesn't render the SVG exactly the
> same as librsvg.
librsvg comes with a command line binary rsvg which renders svgs on top
of librsvg. It should be installed on most systems.

Snippet convert2png.sh:
#!/bin/sh

for i in $(\ls *.svg); do
    IMAGE=${i%.svg}
    rsvg -f png ${i} $IMAGE.png
done
worked fine for me.

	-tobbi




More information about the Xfce4-dev mailing list