// This code example demonstrates how to convert SVG to PDF
// Load an SVG document from a file
var document = new SVGDocument("C:\\Files\\Fill-Circle.svg");

// Initialize an instance of the PdfSaveOptions class
var saveOptions = new PdfSaveOptions();
saveOptions.BackgroundColor = System.Drawing.Color.DarkBlue;

// Convert SVG to PDF
Converter.ConvertSVG(document, saveOptions, "C:\\Files\\Circles_out.pdf");