My notes on how to use SVG graphics in a WPF application
The Goal
The goal is to be able do do things like this:
... where mySvgImage somehow stands for a vector image that has somehow been obtained from an SVG file.
The solution must not involve any proprietary, closed-source libraries.
Naturally, we want one of the following:
- either directly include SVG files into our application as resources, or, if that is not possible, then
- have an "asset pipeline" approach where our SVG files are automatically converted during build into some format which is suitable for inclusion as a resource.