GemBox
Hi,
depending on the used fonts it may be hard to see whether the selected font or a fallback font was used in a PDF. We would like to pass a warning to users to show non maintained fonts in the document. Can I get any feedback regarding missing fonts?
Cheers
Please try using something like the following:
FontSettings.FontSelection += (sender, e) => { if (e.Font is null) Console.WriteLine($"Fallback font will be used for '{e.FontName}'."); };
Does this solve your issue?
Regards, Mario