Hello,
I have an Excel file Aspose.Cells converts to PDF not so good. Could you please tell me if I can use any settings in Aspose.Cells to avoid this issue?
The source and destination files, screenshot image file and my code snippet are below.
Mikhael
excel to pdf issue.zip (687.8 KB)
Dim sSrcFile = "C:\Users\email\Desktop\FM Excel Chinese issue\0.0_PASS_.xls"
Dim sOutPDF = "C:\Out\AsposeCells out.pdf"
Using excelDoc = New Workbook(sSrcFile, New LoadOptions(LoadFormat.Auto))
Dim ws = excelDoc.Worksheets(excelDoc.Worksheets.ActiveSheetIndex)
Using wb0 = New Workbook()
wb0.Worksheets(0).Copy(ws)
wb0.Save(sOutPDF, SaveFormat.Pdf)
End Using
End Using