/Aspose.SVG-for-.NET

Aspose.SVG for .NET examples, plugins and showcase projects

MIT LicenseMIT

Nuget Nuget GitHub

Process & Manipulate SVG via .NET API

Aspose.SVG for .NET is an API to create, read, update and convert SVG files to several different file format. It facilitates .NET application developers to work with SVG files without the need of installing any other application on server or client machines.

Directory Description
Demos Source code for the live demos hosted at https://products.aspose.app/svg/family.
Examples A collection of .NET examples that help you learn the product features.

Workflow

In order to make changes in the repository, you need to:

  1. Create a branch with the proposed changes whose name matches the feature/* pattern.
  2. Create a pull request for this branch. It will be automatically assigned to a suitable reviewer.
  3. Once the request is approved, it can be merged.

SVG File Processing

Read Supported Formats

SVG

Save SVG As

Fixed Layout: PDF, XPS Image: TIFF, BMP, PNG, JPEG, GIF

Platform Independence

Any operating system that can install Mono (.NET 4.0 Framework support) or use .NET core can use Aspose.SVG for .NET. This includes Windows, Linux, and MacOS.

Get Started with Aspose.SVG for .NET

Are you ready to give Aspose.SVG for .NET a try? Simply execute Install-Package Aspose.SVG from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.SVG for .NET and want to upgrade the version, please execute Update-Package Aspose.SVG to get the latest version.

Use C# to Convert SVG to PNG format

string dataDir = RunExamples.GetDataDir_Data();
using (var document = new SVGDocument(Path.Combine(dataDir, "template.svg"))){
    using (var device = new ImageDevice(new ImageRenderingOptions(ImageFormat.Png), dataDir + "output.png")){
        document.RenderTo(device);
    }
}

Home | Product Page | Docs | API Reference | Examples | Blog | Search | Free Support | Temporary License