PdfSaveOptions Constructor |
Namespace: Aspose.Words.Saving
// Load the document to render Document doc = new Document(MyDir + "Rendering.docx"); // Aspose.Words embeds full fonts by default when EmbedFullFonts is set to true // The property below can be changed each time a document is rendered PdfSaveOptions options = new PdfSaveOptions(); options.EmbedFullFonts = true; // The output PDF will be embedded with all fonts found in the document doc.Save(ArtifactsDir + "Rendering.EmbedFullFonts.pdf");