Hi
I am evaluating your PDF product, and trying to use the SVG to PDF conversion. The SVG files viewed in Chrome, IE etc all look like the chart.png image (attached). Whilst the PDF generated bu the following codes are attached as chart.pdf and chart2.pdf. I have also attached the svg file (renamed so it could be uploaded to chart.xml).
Can you advise, I don’t know what I am doing wrong?
Kind regards
Ian
Aspose.Pdf.LoadOptions loadopt = new Aspose.Pdf.SvgLoadOptions();
Aspose.Pdf.Document doc2 = new Aspose.Pdf.Document(@“c:\chart.svg”,loadopt);
doc2.Save(@“c:\chart.pdf”);<span style="color:#678cb1;">Pdf</span> pdf <span style="color:#e8e2b7;">=</span> <span style="color:#93c763;">new</span> <span style="color:#678cb1;">Pdf</span>(); pdf<span style="color:#e8e2b7;">.</span>BindSvg(<span style="color:#efc210;">@"c:\\chart.svg"</span>); pdf<span style="color:#e8e2b7;">.</span>Save(<span style="color:#efc210;">@"c:\\chart2pdf"</span>);