Hi, I using aspose.cells.4.4.3.8
I using the following code to convert excel to pdf:
Dim workbook As Aspose.Cells.Workbook = New Aspose.Cells.Workbook()
Dim fstream As FileStream = New FileStream("c:\\test2\\chinese-v2.xls", FileMode.Open)
workbook.Open(fstream)
workbook.Save("c:\\test2\\chinese-v2.xml", Aspose.Cells.FileFormatType.AsposePdf)
Dim pdf As Aspose.Pdf.Pdf = New Aspose.Pdf.Pdf()
pdf.BindXML("c:\\test2\\chinese-v2.xml", Nothing)
pdf.Save("c:\\test2\\chinese-v2.pdf")
fstream.Close()
However, the chinese character do not show.
the font is using Arial Unicode MS,
It is ok when I try to convert WinWords to pdf, but not in the cells.dll. Please help.
Regards, Paul