DocumentFontsSubsystem.UsingDefaultFont

DocumentFontsSubsystem.UsingDefaultFont method

Erstellt eine neue DocumentFontsSubsystem-Instanz unter Verwendung des angegebenen Standardschriftartnamens.

public static DocumentFontsSubsystem UsingDefaultFont(string defaultFontName, 
    Dictionary<string, string> fontsSubstitutions = null)
ParameterTypBeschreibung
defaultFontNameStringDer Name der Standardschriftart.
fontsSubstitutionsDictionary`2Die Schriftersetzungen.

Rückgabewert

DieDocumentFontsSubsystem .

Beispiele

Zeigt, wie ein Dokument im PDF-Format mit einer angegebenen Standardschriftart gespeichert wird.

// Der Pfad zum Dokumentenverzeichnis.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

// Laden Sie das Dokument in Aspose.Note.
Document oneFile = new Document(Path.Combine(dataDir, "missing-font.one"));

// Dokument als PDF speichern
dataDir = dataDir + "SaveUsingDocumentFontsSubsystemWithDefaultFontName_out.pdf";
oneFile.Save(dataDir, new PdfSaveOptions() 
                      {
                          FontsSubsystem = DocumentFontsSubsystem.UsingDefaultFont("Times New Roman")
                      });

Siehe auch