PDFsharp-MigraDoc 6.1.1 Core buid uses fallback font resolver
<code> static ReportTemplateBase()
{
GlobalFontSettings.FallbackFontResolver = new FailsafeFontResolver();
}
</code>
<code> static ReportTemplateBase()
{
GlobalFontSettings.FallbackFontResolver = new FailsafeFontResolver();
}
</code>
static ReportTemplateBase()
{
GlobalFontSettings.FallbackFontResolver = new FailsafeFontResolver();
}
Running it from Visual Studio in Windows shows that some fonts like Webdings and Wingdings are not resolved:
If same font names are used in html page in Chrome, result is correct:
How to force PDFSharp Core to resolve all fonts available in OS where it runs?
How to get list of font names which are resolved?