Advanced reporting
and data visualization components for .NET
LIVE CHAT Welcome, guest

 





Export to PDF without Displaying GREEK Letters using PF Transport Font
Display Posts for:
Invert
Pans Ape 11/01/2017 18:44
Export to PDF without Displaying GREEK Letters using PF Transport Font

Hello,
We have a small issue with the exporting a report to pdf using PF Transport Font and Greek letters.
While preview report its ok when we try to export to pdf the report the Greek Letters not appear on pdf file.

Thanks in advance for any help!
Best regards,
Areti
Allan Hansen 02/23/2018 15:52
Export to PDF without Displaying GREEK Letters using PF Transport Font

You need to embed the fonts in the PDF file.

When you create your PDF filter, do like this:

PdfExportFilter filter = new PdfExportFilter();
filter.EmbedFonts = true;
filter.EmbedPrivateCharacters = true;