UseCoreFonts
内容
[
隐藏
]PdfSaveOptions.UseCoreFonts property
获取或设置一个值,确定是否用核心 PDF Type 1 字体替换 TrueType 字体 Arial、Times New Roman、 Courier New 和 Symbol。
public bool UseCoreFonts { get; set; }
评论
默认值为错误的
。当该值设置为真的
Arial、Times New Roman、 Courier New 和 Symbol 字体在 PDF 文档中被替换为相应的核心 Type 1 字体。
核心 PDF 字体或其字体规格和合适的替换字体需要可供 any PDF 查看器应用程序使用。
此设置仅适用于 ANSI (Windows-1252) 编码的文本。无论此设置如何,非 ANSI 文本都将使用嵌入的 TrueType 字体写入 。
PDF/A 和 PDF/UA 合规性要求嵌入所有字体。错误的
保存到 PDF/A 和 PDF/UA 时,值将自动使用 。
保存为 PDF 2.0 格式时不支持核心字体。错误的
保存到 PDF 2.0 时,值将自动使用 。
该选项具有更高的优先级FontEmbeddingMode
选项。
例子
显示如何启用/禁用 PDF Type 1 字体替换。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Font.Name = "Arial";
builder.Writeln("Hello world!");
builder.Font.Name = "Courier New";
builder.Writeln("The quick brown fox jumps over the lazy dog.");
// 创建一个“PdfSaveOptions”对象,我们可以将其传递给文档的“Save”方法
// 修改该方法将文档转换为 .PDF 的方式。
PdfSaveOptions options = new PdfSaveOptions();
// 将“UseCoreFonts”属性设置为“true”以替换某些字体,
// 包括我们文档中的两种字体及其 PDF Type 1 等效字体。
// 将“UseCoreFonts”属性设置为“false”以不应用 PDF Type 1 字体。
options.UseCoreFonts = useCoreFonts;
doc.Save(ArtifactsDir + "PdfSaveOptions.EmbedCoreFonts.pdf", options);
if (useCoreFonts)
Assert.That(3000, Is.AtLeast(new FileInfo(ArtifactsDir + "PdfSaveOptions.EmbedCoreFonts.pdf").Length));
else
Assert.That(30000, Is.LessThan(new FileInfo(ArtifactsDir + "PdfSaveOptions.EmbedCoreFonts.pdf").Length));
也可以看看
- class PdfSaveOptions
- 命名空间 Aspose.Words.Saving
- 部件 Aspose.Words