DotNetBrowser PrintHandler in console application

478 Views Asked by At

I am trying to print webpage which is loaded in 'DotNetBrowser.Browser', as PDF document and save locally using DotNetBrowser PrintHandler. This works fine in a windows form application with WinFormsBrowserView but in case of console application, the PrintHandler does not print the entire page i.e. only some parts of the page is printed and saved as pdf.

2

There are 2 best solutions below

0
On BEST ANSWER

Finally i was able to print PDF in console application by setting the initial size to the browser.

browserView.Browser.SetSize(1280, 1024)

This is what i was missing in my code. Since the browser is not shown, setting the initial size solved the problem of incomplete pdf printing.

2
On

Here is the sample code that demonstrates how to load the website and print it to PDF:

using DotNetBrowser;
using DotNetBrowser.Events;
using System;
using System.Threading;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var browser = BrowserFactory.Create())
            {
                ManualResetEvent waitEvent = new ManualResetEvent(false);
                browser.FinishLoadingFrameEvent += delegate(object sender, FinishLoadingEventArgs e)
                {
                    // Wait until main document of the web page is loaded completely.
                    if (e.IsMainFrame)
                    {
                        waitEvent.Set();
                    }
                };
                browser.LoadURL("https://www.teamdev.com/dotnetbrowser");
                waitEvent.WaitOne();
                PrintPDF(browser, System.IO.Path.GetFullPath(@"test.pdf"));
            }
        }



        public static void PrintPDF(Browser browser, string sFileName) {
            ManualResetEvent waitEvent = new ManualResetEvent(false);

            var handler = new MyPDFPrintHandler((printJob) => {
                var printSettings = printJob.PrintSettings;
                printSettings.PrintToPDF = true; 
                printSettings.PDFFilePath = sFileName;
                printJob.PrintJobEvent += (s, e) =>
                {
                    System.Diagnostics.Debug.WriteLine("Printing done: " + e.Success);
                    waitEvent.Set();
                };
                return printSettings; 
            });


            browser.PrintHandler = handler;
            browser.Print();
            waitEvent.WaitOne();
        } 

        class MyPDFPrintHandler : PrintHandler 
        { 

            Func<PrintJob, PrintSettings> func; 

            public MyPDFPrintHandler(Func<PrintJob, PrintSettings> func) 
            { 
                this.func = func; 
            } 
            public PrintStatus OnPrint(PrintJob printJob) 
            {
                PrintSettings printSettings = func(printJob);
                printSettings.PrintToPDF = true;
                printSettings.Landscape = true;
                printSettings.PrintBackgrounds = true; 

                return PrintStatus.CONTINUE; 
            }


        } 
    }
}

As you can see, there is a synchronous printing - the method does not return until the web page is printed completely.

Could you please test this code with your website and let me know the results?