Print pdf with accent marks

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.

image

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);
   }
}

Hi,

Please send us the PDF file that reproduces this issue so that we can investigate it.
You can send it to us via email or support ticket, see the Contact page.

Regards,
Mario

Hi,

Please try again with this NuGet package:

Install-Package GemBox.Pdf -Version 17.0.1465-hotfix

Does this solve your issue?

Regards,
Mario

With this hotfix the pdf prints ok.
Thank you so much. You have a great support team.