DocumentFontsSubsystem.UsingDefaultFont
DocumentFontsSubsystem.UsingDefaultFont method
使用指定的默认字体名称创建新的 DocumentFontsSubsystem 实例。
public static DocumentFontsSubsystem UsingDefaultFont(string defaultFontName,
Dictionary<string, string> fontsSubstitutions = null)
范围 | 类型 | 描述 |
---|---|---|
defaultFontName | String | 默认字体名称。 |
fontsSubstitutions | Dictionary`2 | 字体替换。 |
返回值
例子
显示如何使用指定的默认字体以 pdf 格式保存文档。
// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
// 将文档加载到 Aspose.Note 中。
Document oneFile = new Document(Path.Combine(dataDir, "missing-font.one"));
// 将文档保存为 PDF
dataDir = dataDir + "SaveUsingDocumentFontsSubsystemWithDefaultFontName_out.pdf";
oneFile.Save(dataDir, new PdfSaveOptions()
{
FontsSubsystem = DocumentFontsSubsystem.UsingDefaultFont("Times New Roman")
});
也可以看看
- class DocumentFontsSubsystem
- 命名空间 Aspose.Note.Fonts
- 部件 Aspose.Note