Aspose.Words.Examples.CSharp.Rendering_and_Printing.EmbeddingWindowsStandardFonts.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:AvoidEmbeddingCoreFonts
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_RenderingAndPrinting(); 

            Document doc = new Document(dataDir + "Rendering.doc");

            // To disable embedding of core fonts and subsuite PDF type 1 fonts set UseCoreFonts to true.
            PdfSaveOptions options = new PdfSaveOptions();
            options.UseCoreFonts = true;

            string outPath = dataDir + "Rendering.DisableEmbedWindowsFonts_out.pdf";
            // The output PDF will not be embedded with core fonts such as Arial, Times New Roman etc.
            doc.Save(outPath);
            // ExEnd:AvoidEmbeddingCoreFonts
            Console.WriteLine("\nAvoid embedded core fonts setup successfully.\nFile saved at " + outPath);
            SkipEmbeddedArialAndTimesRomanFonts(doc, dataDir);
        }
        private static void SkipEmbeddedArialAndTimesRomanFonts(Document doc, string dataDir)
EmbeddingWindowsStandardFonts