I'm working on a project in PHP that needs to render dynamically-created SVG images to PNG (or GIF if not PNG) format. I know I can do this by invoking a SVG renderer like rsvg, or with an extension like ImageMagick, which isn't that common*.
Is there a "drop-in" style library that can render SVG using things like GD and DomDocument?
* Available in common webhosts and in packages like XAMPP.
To clarify, I already have the SVG itself generated, I just need it to be rendered server-size.