I have read about converting SVG images to PNG and I tried a bit, but Imagick doesn't seem to cut it. Does Imagick have some problems with Gaussian blur and/or using it on groups?
Is there another way to resize (before converting it) and convert an SVG to PNG or whatever in PHP?
Here's my SVG (mostly self written, except for the path, which was exported from Gimp): http://dt4.my1xt.tk/pi2.svg
And this is Imagick's result: http://dt4.my1xt.tk/pi-im.png
so as it should be visible enough Imagick won't cut it. I cannot really change the server configuration, but maybe PHP can run some binaries that I could put there (no idea, never tried that)?
Edit: rescale can be done with some str_replace()
magic with the size of the SVG (without forgetting to set a viewbox in the svg before). Now the problem remains that I need another method for PNG-ing the SVG.