I have an svg document and when I convert it to a pdf format it throw NullReferenceException.
Version Info
Aspose.SVG for Net 23.10.
The sample code
void Main()
{
var svgPath = @"C:\Users\54390\Downloads\test.svg";
var pdfPath = @"C:\Users\54390\Downloads\output.pdf";
var options = new Aspose.Svg.Saving.PdfSaveOptions();
Aspose.Svg.Converters.Converter.ConvertSVG(svgPath, options, pdfPath);
}
The demo file
test.zip (128.6 KB)