Convert SVG to PDF – C#

Let’s consider how to convert an SVG document into a Portable Document Format (PDF) file format. With Aspose.HTML, you can convert SVG to PDF format programmatically with full control over a wide range of conversion parameters.

In this article, you find information on how to convert SVG to PDF using ConvertSVG() methods of the Converter class and how to apply PdfSaveOptions 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 PDF file programmatically, please see the following C# code examples.

SVG to PDF 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 PDF 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.

1// Invoke the ConvertSVG() method for SVG to PDF conversion
2Converter.ConvertSVG(Path.Combine(DataDir, "shapes.svg"), new PdfSaveOptions(), Path.Combine(OutputDir, "convert-with-single-line.pdf"));

Convert SVG to PDF

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 PdfSaveOptions object.
  3. Use the ConvertSVG(content, baseUri, options, outputPath) method of the Converter class to save SVG as a PDF file.

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

 1// Prepare SVG code
 2var code = "<svg xmlns='http://www.w3.org/2000/svg'>" +
 3           "<circle cx ='100' cy ='100' r ='50' fill='none' stroke='red' stroke-width='5' />" +
 4           "</svg>";
 5
 6// Prepare a path for converted file saving
 7string savePath = Path.Combine(OutputDir, "circle.pdf");
 8           
 9// Initialize PdfSaveOptions
10var options = new PdfSaveOptions();
11
12// Convert SVG to PDF
13Converter.ConvertSVG(code, ".", options, savePath);

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

Save Options

Aspose.HTML allows converting SVG to PDF using default or custom save options. PdfSaveOptions usage enables you to customize the rendering process; you can specify the page size, margins, background color, file permissions, Css, etc.

PropertyDescription
JpegQualitySpecifies the quality of JPEG compression for images. The default value is 95.
CssGets a CssOptions object which is used for configuration of CSS properties processing.
DocumentInfoThis property contains information about the output PDF document.
BackgroundColorThis property sets the color that will fill the background of every page. 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.
EncryptionThis property gets or sets encryption details. If it is not set, then no encryption will be performed.

To learn more about PdfSaveOptions, please read the Fine-Tuning Converters article.

Convert SVG to PDF using PdfSaveOptions

To convert SVG to PDF with PdfSaveOptions specifying, you should follow a few steps:

  1. Load an SVG file using one of the SVGDocument() constructors of the SVGDocument class. ( aspose.svg).
  2. Create a new PdfSaveOptions object and specify save options.
  3. Use the ConvertSVG() method to save SVG as a PDF file. You need to pass the SVGDocument, PdfSaveOptions, and output file path to the ConvertSVG() method for SVG to PDF conversion.

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

 1// Prepare a path to a source SVG file
 2string documentPath = Path.Combine(DataDir, "aspose.svg");
 3
 4// Prepare a path for converted file saving
 5string savePath = Path.Combine(OutputDir, "aspose-options.pdf");
 6
 7// Initialize an SVG document from the file
 8using var document = new SVGDocument(documentPath);
 9
10// Initialize PdfSaveOptions. Set up the page-size, margins, resolutions, JpegQuality, and change the background color to AliceBlue
11var options = new PdfSaveOptions()
12{
13    HorizontalResolution = 200,
14    VerticalResolution = 200,
15    BackgroundColor = System.Drawing.Color.AliceBlue,
16    JpegQuality = 100
17};
18options.PageSetup.AnyPage = new Page(new Aspose.Html.Drawing.Size(500, 500), new Margin(30, 10, 10, 10));
19
20// Convert SVG to PDF
21Converter.ConvertSVG(document, options, savePath);

The PdfSaveOptions() constructor initializes an instance of the PdfSaveOptions 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 PdfSaveOptions class provides numerous properties that give you full control over a wide range of parameters and improve the process of converting SVG to PDF format. Among these properties, JpegQuality that enables you to specify the quality of JPEG compression for images. The default value is 95, but you can set the required one.

The figure illustrates the aspose-options.pdf file with specified page size, background color, etc.

Text “Image of the Aspose logo”

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:

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

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

Download the Aspose.HTML for .NET library, which 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 “SVG to PDF Converter”

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.