EmbedSystemFonts

FontInfoCollection.EmbedSystemFonts property

指定是否将系统字体嵌入到文档中。 该属性的默认值为错误的

此选项仅在以下情况下有效EmbedTrueTypeFonts选项设置为真的

public bool EmbedSystemFonts { get; set; }

评论

将此属性设置为真的如果用户使用东亚系统 并且想要创建一个可供系统上没有该 语言字体的其他人读取的文档,则此选项很有用。例如,日语系统上的用户可以选择在文档中嵌入 字体,以便日语文档在所有系统上都可读。

此选项仅适用于 DOC、DOCX 和 RTF 格式。

例子

演示如何保存嵌入 TrueType 字体的文档。

Document doc = new Document(MyDir + "Document.docx");

FontInfoCollection fontInfos = doc.FontInfos;
fontInfos.EmbedTrueTypeFonts = embedAllFonts;
fontInfos.EmbedSystemFonts = embedAllFonts;
fontInfos.SaveSubsetFonts = embedAllFonts;

doc.Save(ArtifactsDir + "Font.FontInfoCollection.docx");

if (embedAllFonts)
    Assert.That(25000, Is.LessThan(new FileInfo(ArtifactsDir + "Font.FontInfoCollection.docx").Length));
else
    Assert.That(15000, Is.AtLeast(new FileInfo(ArtifactsDir + "Font.FontInfoCollection.docx").Length));

也可以看看