Convert SVG to PNG – C# code and Online Converter

PNG file format supports lossless image compression that makes it popular among its users. It has two major uses: the World Wide Web and image-editing. It widely takes to transmit pictures over the network, display photos and graphics on web pages and reserve in cloud storages. There are some restrictions on SVG usage on web pages, so conversion SVG to PNG is sometimes necessary. With Aspose.HTML, you can convert SVG to PNG format programmatically with full control over a wide range of conversion parameters.

In this article, you find information on SVG to PNG conversion by using ConvertSVG() methods of the Converter class and applying ImageSaveOptions and ICreateStreamProvider parameters. Also, you can try an Online SVG Converter to test the Aspose.HTML API functionality and convert SVG on the fly.

Online SVG Converter

You can convert SVG to other formats with Aspose.HTML API in real time. Please load SVG from the local file system, select the output format and run the example. The save options are set by default. You will immediately receive the conversion result as a separate file.

                
            

If you want to convert SVG to PNG image programmatically, please see the following C# code examples.

SVG to PNG by a single line of code

The static methods of the Converter class are primarily used as the easiest way to convert an SVG file into various formats. You can convert SVG to PNG in your C# application literally with a single line of code!

In the following example, we take an SVG file in a local file system ( shapes.svg), convert and save it in the local file system.

1using System.IO;
2using Aspose.Html.Converters;
3using Aspose.Html.Rendering.Image;
4using Aspose.Html.Saving;
5...
6     // Invoke the ConvertSVG() method for SVG to PNG conversion
7     Converter.ConvertSVG(Path.Combine(DataDir, "shapes.svg"), new ImageSaveOptions(), Path.Combine(OutputDir, "convert-with-single-line.png"));

Convert SVG to PNG

Converting a file to another format using the ConvertSVG() method is a sequence of operations among which document loading and saving. In the following example, we create an SVG file from code.

  1. Prepare code for an SVG document.
  2. Create a new ImageSaveOptions object. By default, the Format property is PNG.
  3. Use the ConvertSVG(content, baseUri, options, outputPath) method of the Converter class to save SVG as a PNG image.

Please take a look over the following C# code snippet which shows the process of converting SVG to PNG using Aspose.HTML for .NET.

 1using System.IO;
 2using Aspose.Html.Converters;
 3using Aspose.Html.Rendering.Image;
 4using Aspose.Html.Saving;
 5...
 6    // Prepare SVG code 
 7    var code = "<svg xmlns='http://www.w3.org/2000/svg'>" +
 8               "<circle cx ='100' cy ='100' r ='60' fill='none' stroke='red' stroke-width='10' />" +
 9               "</svg>";
10
11    // Prepare a path for converted file saving 
12    string savePath = Path.Combine(OutputDir, "circle.png");
13
14    // Initialize ImageSaveOptions 
15    var options = new ImageSaveOptions();
16
17    // Convert SVG to PNG
18    Converter.ConvertSVG(code, ".", options, savePath);

You can download the complete examples and data files from GitHub.

Save Options

Aspose.HTML allows converting SVG to PNG using default or custom save options. ImageSaveOptions usage enables you to customize the rendering process. You can specify the image format, page size, margins, background color, etc.

PropertyDescription
CompressionSets Tagged Image File Format (TIFF) Compression. By default, this property is LZW.
CSSGets a CssOptions object which is used for configuration of CSS properties processing.
FormatSets the ImageFormat (JPG, PNG, BMP, TIFF, or GIF). By default, this property is PNG.
BackgroundColorThis property sets the color that will fill the background. By default, this property is Transparent.
PageSetupThis property gets a page setup object and uses it for configuration output page-set.
HorizontalResolutionSets horizontal resolution for output images in pixels per inch. The default value is 300 dpi.
VerticalResolutionSets vertical resolution for output images in pixels per inch. The default value is 300 dpi.
SmoothingModeThis property sets the rendering quality for this image. Available values are Invalid, Default, HighSpeed, HighQuality, None, and AntiAlias.
TextGets a TextOptions object which is used for configuration of text rendering.

Convert SVG to PNG using ImageSaveOptions

To convert SVG to PNG with ImageSaveOptions specifying, you should follow a few steps:

  1. Load an SVG file using one of the SVGDocument() constructors of the SVGDocument class. ( flower1.svg).
  2. Create a new ImageSaveOptions object and specify save options. By default, the Format property is PNG.
  3. Use the ConvertSVG() method to save SVG as a PNG image. You need to pass the SVGDocument, ImageSaveOptions, and output file path to the ConvertSVG() method to convert SVG to PNG.

The following C# code snippet shows how to convert SVG to PNG using custom save options:

 1using System.IO;
 2using Aspose.Html.Dom.Svg;
 3using Aspose.Html.Converters;
 4using Aspose.Html.Rendering.Image;
 5using Aspose.Html.Saving;
 6using System.Drawing;
 7using System.Drawing.Drawing2D;
 8...
 9     // Prepare a path to a source SVG file
10     string documentPath = Path.Combine(DataDir, "flower1.svg");
11
12     // Prepare a path for converted file saving 
13     string savePath = Path.Combine(OutputDir, "flower-options.png");
14
15     // Initialize an SVG document from the file
16     using var document = new SVGDocument(documentPath);
17
18     // Initialize ImageSaveOptions. Set up the SmoothingMode, resolutions, and change the background color to AliceBlue 
19     var options = new ImageSaveOptions()
20     {
21         HorizontalResolution = 200,
22         VerticalResolution = 200,
23         BackgroundColor = System.Drawing.Color.AliceBlue,
24         SmoothingMode = SmoothingMode.HighQuality,
25     };
26
27     // Convert SVG to PNG
28     Converter.ConvertSVG(document, options, savePath);

The ImageSaveOptions() constructor initializes an instance of the ImageSaveOptions class that is passed to ConvertSVG() method. The ConvertSVG() method takes the document, options, output file path savePath and performs the conversion operation.

In the above example, we use:

The ImageSaveOptions class provides numerous properties that give you full control over a wide range of parameters and improve the process of converting SVG to Image formats. Among these properties, SmoothingMode that enables you to set the rendering quality for the image. Available values are Invalid, Default, HighSpeed, HighQuality, None, and AntiAlias. You can select any value, considering the advantages and disadvantages of each one.

The figure illustrates the fragment of the flower-options.png file.

Text ““Flower” PNG image”

Output Stream Providers

If it is required to save files in the remote storage (e.g., cloud, database, etc.) you can implement the ICreateStreamProvider interface to have manual control over the file creating process. This interface is designed as a callback object to create a stream at the beginning of the document/page (depending on the output format) and release the early created stream after rendering the document/page.

Aspose.HTML for .NET provides various types of output formats for rendering operations. Some of these formats produce a single output file (for instance, PDF, XPS), others create multiple files (Image formats – JPG, PNG, etc.).

The example below shows how to implement and use your own MemoryStreamProvider in the application:

 1using System.IO;
 2using System.Collections.Generic;
 3...
 4    class MemoryStreamProvider : Aspose.Html.IO.ICreateStreamProvider
 5    {
 6        // List of MemoryStream objects created during the document rendering
 7        public List<MemoryStream> Streams { get; } = new List<MemoryStream>();
 8
 9        public Stream GetStream(string name, string extension)
10        {
11            // This method is called when the only one output stream is required, for instance for XPS, PDF or TIFF formats.
12            MemoryStream result = new MemoryStream();
13            Streams.Add(result);
14            return result;
15        }
16
17        public Stream GetStream(string name, string extension, int page)
18        {
19            // This method is called when the creation of multiple output streams are required. For instance, during the rendering HTML to list of image files (JPG, PNG, etc.)
20            MemoryStream result = new MemoryStream();
21            Streams.Add(result);
22            return result;
23        }
24
25        public void ReleaseStream(Stream stream)
26        {
27            //  Here you can release the stream filled with data and, for instance, flush it to the hard-drive
28        }
29
30        public void Dispose()
31        {
32            // Releasing resources
33            foreach (var stream in Streams)
34                stream.Dispose();
35        }
36    }
 1using System.IO;
 2using System.Linq;
 3using Aspose.Html.Converters;
 4using Aspose.Html.Rendering.Image;
 5using Aspose.Html.Saving;
 6...
 7    // Create an instance of MemoryStreamProvider
 8    using var streamProvider = new MemoryStreamProvider();
 9
10    // Prepare SVG code
11    var code = "<svg xmlns='http://www.w3.org/2000/svg'>" +
12               "<circle cx='50' cy='50' r='40' stroke='black' stroke-width='3' fill='red' />" +
13               "</svg>";
14
15    // Convert SVG to PNG using the MemoryStreamProvider
16    Converter.ConvertSVG(code, ".", new ImageSaveOptions(), streamProvider);
17
18    // Get access to the memory stream that contains the result data
19    var memory = streamProvider.Streams.First();
20    memory.Seek(0, SeekOrigin.Begin);
21
22    // Flush the result data to the output file
23    using (FileStream fs = File.Create(Path.Combine(OutputDir, "stream-provider.png")))
24    {
25        memory.CopyTo(fs);
26    }

Check the quality of SVG to PNG conversion with our online SVG to PNG Converter. Upload, convert your files and get results in a few seconds. Try our forceful SVG to PNG Converter for free now!

Download our Aspose.HTMLfor .NET library allows you to successfully, quickly, and easily convert your HTML, MHTML, EPUB, SVG, and Markdown documents to the most popular formats.

You can download the complete examples and data files from GitHub.

Text “Banner SVG to PNG Converter”

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.