I’m trying out Aspose.Pdf to convert to convert Svg images to pdf.
I’ve attached some sample files in a zip here (62.2 KB)
The code I’m using to generate this is pretty simple
var options = new SvgLoadOptions {
};
var document = new Document(@"test3.svg", options);
document.Save($"output.pdf");