Skip to content

lanicon/Aspose.SVG-for-.NET

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

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 | Free Support | Temporary License

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published