What methods currently exist to convert an SVG image to PNG or JPEG programmatically using C#?
I've read all of the existing SO questions on this topic, and all of them involve using an external process to launch a third party program. In my case, this isn't an option as we'll be migrating to Azure soon.
What I need to be able to do is to load the SVG file from disk and ideally convert it to something I can use the System.Drawing classes to manipulate.
Any ideas?