DocumentFontsSubsystem.UsingDefaultFont

DocumentFontsSubsystem.UsingDefaultFont method

指定されたデフォルトのフォント名を使用して新しい DocumentFontsSubsystem インスタンスを作成します。

public static DocumentFontsSubsystem UsingDefaultFont(string defaultFontName, 
    Dictionary<string, string> fontsSubstitutions = null)
パラメータタイプ説明
defaultFontNameStringデフォルトのフォント名.
fontsSubstitutionsDictionary`2フォントの置換.

戻り値

DocumentFontsSubsystem.

指定された既定のフォントを使用してドキュメントを 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")
                      });

関連項目