Ruslan
Ruslan

Reputation: 3028

How to open and render SVG files in .NET environment?

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.

Upvotes: 32

Views: 56488

Answers (2)

Sam Hobbs
Sam Hobbs

Reputation: 2881

We can now use Svg.Skia from Nuget. We can use SkiaSharp with it.

Upvotes: 1

Yahia
Yahia

Reputation: 70369

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

Upvotes: 16

Related Questions