FontInfoSubstitution
内容
[
隐藏
]FontSubstitutionSettings.FontInfoSubstitution property
与字体信息替换规则相关的设置。
public FontInfoSubstitutionRule FontInfoSubstitution { get; }
例子
演示如何设置属性以从可用字体源中查找缺失字体的最接近匹配项。
public void EnableFontSubstitution()
{
// 打开一个文档,其中包含使用我们任何字体源中不存在的字体格式化的文本。
Document doc = new Document(MyDir + "Missing font.docx");
// 分配一个回调来处理字体替换警告。
HandleDocumentSubstitutionWarnings substitutionWarningHandler = new HandleDocumentSubstitutionWarnings();
doc.WarningCallback = substitutionWarningHandler;
// 设置默认字体名称并启用字体替换。
FontSettings fontSettings = new FontSettings();
fontSettings.SubstitutionSettings.DefaultFontSubstitution.DefaultFontName = "Arial";
;
fontSettings.SubstitutionSettings.FontInfoSubstitution.Enabled = true;
// 字体替换后应使用原始字体规格。
doc.LayoutOptions.KeepOriginalFontMetrics = true;
// 如果我们保存缺少字体的文档,我们将收到字体替换警告。
doc.FontSettings = fontSettings;
doc.Save(ArtifactsDir + "FontSettings.EnableFontSubstitution.pdf");
using (IEnumerator<WarningInfo> warnings = substitutionWarningHandler.FontWarnings.GetEnumerator())
while (warnings.MoveNext())
Console.WriteLine(warnings.Current.Description);
// 我们还可以验证集合中的警告并清除它们。
Assert.AreEqual(WarningSource.Layout, substitutionWarningHandler.FontWarnings[0].Source);
Assert.AreEqual(
"Font '28 Days Later' has not been found. Using 'Calibri' font instead. Reason: alternative name from document.",
substitutionWarningHandler.FontWarnings[0].Description);
substitutionWarningHandler.FontWarnings.Clear();
Assert.That(substitutionWarningHandler.FontWarnings, Is.Empty);
}
public class HandleDocumentSubstitutionWarnings : IWarningCallback
{
/// <summary>
/// 每次加载/保存期间发生警告时调用。
/// </summary>
public void Warning(WarningInfo info)
{
if (info.WarningType == WarningType.FontSubstitution)
FontWarnings.Warning(info);
}
public WarningInfoCollection FontWarnings = new WarningInfoCollection();
}
也可以看看
- class FontInfoSubstitutionRule
- class FontSubstitutionSettings
- 命名空间 Aspose.Words.Fonts
- 部件 Aspose.Words