32

Are there any relatively easy ways to deal with SVG images in .NET?

  1. How to extract all graphic primitives from file.
  2. How to render a SVG file to memory buffer (with transparency)

P.S. I'm using SFML as a graphic outputting engine.

slavoo
  • 5,798
  • 64
  • 37
  • 39
Ruslan
  • 2,678
  • 3
  • 22
  • 25
  • Possible duplicate of [Converting SVG to PNG using C#](https://stackoverflow.com/questions/58910/converting-svg-to-png-using-c-sharp) – Alex Angas Jul 08 '19 at 13:50

1 Answers1

16

please see Converting SVG to PNG using C# - there are two options to deal with SVG from .NET...

Another option is http://www.codeproject.com/KB/WPF/SharpVectors.aspx

participant
  • 2,923
  • 2
  • 23
  • 40
Yahia
  • 69,653
  • 9
  • 115
  • 144