DocumentFontsSubsystem.UsingDefaultFontFromFile

DocumentFontsSubsystem.UsingDefaultFontFromFile method

Maak een nieuwe DocumentFontsSubsystem-instantie met standaard een lettertype uit het opgegeven bestand.

public static DocumentFontsSubsystem UsingDefaultFontFromFile(string filePath, 
    Dictionary<string, string> fontsSubstitutions = null)
ParameterTypeBeschrijving
filePathStringHet bestand met de standaardlettertypenaam.
fontsSubstitutionsDictionary`2De vervangingen van lettertypen.

Winstwaarde

DeDocumentFontsSubsystem .

Voorbeelden

Laat zien hoe u een document in pdf-indeling opslaat met het standaardlettertype uit een bestand.

// Het pad naar de documentenmap.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

string fontFile = Path.Combine(dataDir, "geo_1.ttf");

// Laad het document in Aspose.Note.
Document oneFile = new Document(Path.Combine(dataDir, "missing-font.one"));

// Sla het document op als PDF
dataDir = dataDir + "SaveUsingDocumentFontsSubsystemWithDefaultFontFromFile_out.pdf";
oneFile.Save(dataDir, new PdfSaveOptions()
                          {
                              FontsSubsystem = DocumentFontsSubsystem.UsingDefaultFontFromFile(fontFile)
                          });

Zie ook