fastreport export pdf not shows fonts orginally(returns arial)
I have a sample report. when i export it as pdf from fastreport designer font is true. when i export it pdf from asp.net code on debug mode font is true again.
But when i export it as pdf from asp.net on publish font is changing to arial. Chomsky font is installed on server which i tested.
Fastreport version:2018.4.7.0
my code sample:
FastReport.Utils.Config.WebMode = true;
var webReport = new FastReport.Web.WebReport();
webReport.Report.Load(reportPath);
webReport.Report.Dictionary.RegisterData(List, "Table", true);
webReport.PdfEmbeddingFonts = true;
webReport.Report.Prepare();
System.IO.Stream stream = new System.IO.MemoryStream();
FastReport.Export.Pdf.PDFExport exportDiploma = new FastReport.Export.Pdf.PDFExport();
//exportDiploma.PdfCompliance = FastReport.Export.Pdf.PDFExport.PdfStandard.PdfA_3b;
exportDiploma.EmbeddingFonts = true;
webReport.Report.Export(exportDiploma, stream);
Comments
Habe das gleiche Problem. Bei mir ist die Ursache die Schriftart.
Die Schriftart welche als PDF Export nicht korrekt angezeigt wird, hat die Eigenschaft "PostScript Kontur". (Eigenschaften des Fonts anzeigen)
Habe diese Schrift dann als TTF (TrueType Font) umgewandelt und nun funktioniert auch der Export wieder korrekt.
i changed the font type ttf but it does not help.
it is all about font licensing, https://forum.fast-report.com/en/discussion/14712/problem-pdf-with-unicode-font#latest
what do u mean? i look at the link but not fits to me.