Posted 2 February 2021, 4:17 am EST - Updated 30 September 2022, 4:48 pm EST
I’m converting a template from Crystal Reports to Active Reports rdlx template
The original template uses Meta fonts - e.g. https://en.wikipedia.org/wiki/FF_Meta
The fonts have font embeddability option of Editable (see screen shot 1)
We are generating the PDFs using all property of FontEmbedding property as below
var pdfSettings = new Settings()
{
EmbedFonts = FontEmbedding.All,
Version = PdfVersion.Pdf17,
Use128Bit = true,
Application = “Edge”,
Author = “Edge”,
DisplayMode = DisplayMode.None
};
Yet when the PDFs are generated the meta fonts are not embedded (all other fonts are) . See attached for generated PDF properties
Are Meta fonts supported by Active Reports for purpose of embedding?