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. |
In order to make changes in the repository, you need to:
- Create a branch with the proposed changes whose name matches the feature/* pattern.
- Create a pull request for this branch. It will be automatically assigned to a suitable reviewer.
- Once the request is approved, it can be merged.
- Create, read and write SVG files.
- Convert SVG to other supported file formats.
- DOM Tree manipulation as per official SVG specs.
- Support for content navigation via XPath Query, CSS Selectors, Element and Document Traversal features.
- Support for quality rendering.
SVG
Fixed Layout: PDF, XPS Image: TIFF, BMP, PNG, JPEG, GIF
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.
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.
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