I’m evaluating your product and i’m trying to print a pdf document with your API using .net application (Gembox.PDF version 17.0.1457).
This pdf document have characters with accent marks.
When print this pdf document with Adobe Acrobat (for example) it’s print ok.
But when print with GemBox.PDF the acents are printed wrong.
This is the code:
private void PrintWithGemBox(string pFilePath, string pPrinterName)
{
GemBox.Pdf.ComponentInfo.SetLicense("FREE-LIMITED-KEY");
using (var lPDFDocument = GemBox.Pdf.PdfDocument.Load(pFilePath))
{
lPDFDocument.Print(pPrinterName);
}
}