FontSubstitutionSettings

FontSubstitutionSettings class

指定字体替换机制设置。

要了解更多信息,请访问使用字体文档文章。

public class FontSubstitutionSettings

特性

姓名描述
DefaultFontSubstitution { get; }与默认字体替换规则相关的设置。
FontConfigSubstitution { get; }与字体配置替换规则相关的设置。
FontInfoSubstitution { get; }与字体信息替换规则相关的设置。
FontNameSubstitution { get; }与字体名称替换规则相关的设置。
TableSubstitution { get; }与表替换规则相关的设置。

评论

字体替换过程由多个规则组成,这些规则按特定顺序逐一检查。 如果第一个规则无法解析字体,则检查第二个规则,依此类推。

规则的顺序如下: 1. 字体名称替换规则(默认启用) 2. 字体配置替换规则(默认禁用) 3. 表格替换规则(默认启用) 4. 字体信息替换规则(默认启用) 5.默认字体规则(默认启用)

请注意,如果满足以下条件,字体信息替换规则将始终解析字体:FontInfo是 available 并将覆盖默认字体规则。如果您想使用默认字体规则,那么您应该禁用 字体信息替换规则。

请注意,字体配置替换规则将在大多数情况下解析字体,从而覆盖所有其他规则。

例子

演示如何访问文档的系统字体源并设置字体替代品。

Document doc = new Document();
doc.FontSettings = new FontSettings();

// 默认情况下,空白文档始终包含系统字体源。
Assert.AreEqual(1, doc.FontSettings.GetFontsSources().Length);

SystemFontSource systemFontSource = (SystemFontSource) doc.FontSettings.GetFontsSources()[0];
Assert.AreEqual(FontSourceType.SystemFonts, systemFontSource.Type);
Assert.AreEqual(0, systemFontSource.Priority);

PlatformID pid = Environment.OSVersion.Platform;
bool isWindows = (pid == PlatformID.Win32NT) || (pid == PlatformID.Win32S) ||
                 (pid == PlatformID.Win32Windows) || (pid == PlatformID.WinCE);
if (isWindows)
{
    const string fontsPath = @"C:\WINDOWS\Fonts";
    Assert.AreEqual(fontsPath.ToLower(),
        SystemFontSource.GetSystemFontFolders().FirstOrDefault()?.ToLower());
}

foreach (string systemFontFolder in SystemFontSource.GetSystemFontFolders())
{
    Console.WriteLine(systemFontFolder);
}

// 设置 Windows Fonts 目录中存在的字体来替代不存在的字体。
doc.FontSettings.SubstitutionSettings.FontInfoSubstitution.Enabled = true;
doc.FontSettings.SubstitutionSettings.TableSubstitution.AddSubstitutes("Kreon-Regular", new[] {"Calibri"});

Assert.AreEqual(1,
    doc.FontSettings.SubstitutionSettings.TableSubstitution.GetSubstitutes("Kreon-Regular").Count());
Assert.Contains("Calibri",
    doc.FontSettings.SubstitutionSettings.TableSubstitution.GetSubstitutes("Kreon-Regular").ToArray());

// 或者,我们可以添加一个文件夹字体源,其中相应的文件夹包含字体。
FolderFontSource folderFontSource = new FolderFontSource(FontsDir, false);
doc.FontSettings.SetFontsSources(new FontSourceBase[] {systemFontSource, folderFontSource});
Assert.AreEqual(2, doc.FontSettings.GetFontsSources().Length);

// 重置字体源仍然让我们保留系统字体源以及替代品。
doc.FontSettings.ResetFontSources();

Assert.AreEqual(1, doc.FontSettings.GetFontsSources().Length);
Assert.AreEqual(FontSourceType.SystemFonts, doc.FontSettings.GetFontsSources()[0].Type);
Assert.AreEqual(1,
    doc.FontSettings.SubstitutionSettings.TableSubstitution.GetSubstitutes("Kreon-Regular").Count());

也可以看看