I have a couple of PDF contain chinese characters and need to convert to TIFF via PdfViewer.
The outcome content is completely different from the original PDF content. Below is the code I use. Can you let me know if this is a font issue where they are not supported or there is workaround I can use. Sample of PDF attached.
PdfViewer viewer = new PdfViewer();
viewer.OpenPdfFile(input);
viewer.AutoRotate = true;
viewer.AutoResize = true;
PrintDocument prtdoc = new PrintDocument();
ps.PrinterName = printerName;
viewer.PrintDocumentWithSettings(ps);
viewer.ClosePdfFile();