im yuuki.
I want to print PDF files using Spire.Pdf for .NET
But I got Garbled characters in paper..
PDF file is nomaly shown. but printed paper gots Garbled characters.
Result of examining garbled, I've found that the following characters are garbled all certain characters is output.
I wanto use your software but can't buy product with such awfull bug..
Pls fix this bug Early.. or tell me if there is a countermeasure..
##enviroment
(1)VB.net 2012 FW4.0 / Win7 pro
(2)Spire.Pdf for .NET ver 3.1.24 (hotfix ver)
(3)PDF Font: IPAGothic (EMBEDDED) Japanese 2ByteFont (ipafont.ipa.go.jp/#en)
##Process
(1) make and save PDF file by itextsharp (font embedded)
(2) confirm that there is no problem to open in Adobe Reader
(3) open PDF file by Spire.Pdf
(4) print PDF and got Garbled characters
##Code
- Code: Select all
Using pdfDoc As New PdfDocument
pdfDoc.LoadFromFile(pdfFilePath, FileFormat.PDF)
pdfDoc.PrintDocument.Print()
pdfDoc.Close()
End Using