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)
Parameter | Type | Beschrijving |
---|---|---|
filePath | String | Het bestand met de standaardlettertypenaam. |
fontsSubstitutions | Dictionary`2 | De vervangingen van lettertypen. |
Winstwaarde
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
- class DocumentFontsSubsystem
- naamruimte Aspose.Note.Fonts
- montage Aspose.Note