Problem: PDF with Unicode Font

edited 8:30AM in FastReport.Mono
this problem also exists in dotnet core....please fix

Comments

  • edited 8:30AM
    finally found the answer:
    1. unicode font, https://www.google.com/get/noto/
    2. set pdf compliance (embedded font)
    using (FastReport.Export.Pdf.PDFExport pdfExport = new FastReport.Export.Pdf.PDFExport())
    {
       pdfExport.PdfCompliance = FastReport.Export.Pdf.PDFExport.PdfStandard.PdfX_4;
       pdfExport.Export(report, ms);
    }
    

Leave a Comment