Printing PDF Files in WPF—A Complete Guide | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (173).NET Core  (29).NET MAUI  (207)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (40)Black Friday Deal  (1)Blazor  (215)BoldSign  (14)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (220)Microsoft  (118)PDF  (81)Python  (1)React  (100)Streamlit  (1)Succinctly series  (131)Syncfusion  (912)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (158)Xamarin  (161)XlsIO  (36)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (147)Chart  (130)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (626)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (40)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (506)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (386)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (590)What's new  (331)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Printing PDF Files in WPF—A Complete Guide

Printing PDF Files in WPF—A Complete Guide

In our previous blog post, Top 10 Features of Syncfusion WPF PDF Viewer, you explored the top features of the WPF PDF Viewer. In this blog post, you will learn in-depth details about one of the most necessary features of PDF Viewer: printing PDF files. The following procedures to print a PDF document are explained in this blog:

Let’s get started.

After loading a PDF file in the PDF Viewer control, you can print it by simply clicking the print icon  Print button in the toolbar.
It opens a print dialog similar to the one in the following screenshot and allows you to select the destination printer, page range, number or copies, orientation, print to file, and other details before printing the file.
Print Dialog

Silent printing

Silent printing allows you to print a PDF file directly to the default printer without any print dialogs. You can simply use the Print method of PDF Viewer to perform silent printing without interruption.

PdfDocumentView pdfViewer = new PdfDocumentView();
pdfViewer.Load(@"Sample.pdf");
pdfViewer.Print();

Additionally, you can customize the number of copies, page orientation, page size, and document name to be displayed while printing, and other details through the printer settings before starting to print.

pdfViewer.PrinterSettings.Copies = 2;
pdfViewer.PrinterSettings.PageOrientation = PdfViewerPrintOrientation.Portrait;
pdfViewer.PrinterSettings.PageSize = PdfViewerPrintSize.Fit;
pdfViewer.PrinterSettings.DocumentName = "Invoice";
pdfViewer.PrinterSettings.ShowPrintStatusDialog = false;           

You can also perform silent printing by sending the PDF to a specific printer, rather than the default printer, by passing the printer name as a parameter to the Print method. The following code example shows how to silent print a file with the printer “OneNote for Windows 10”.

pdfViewer.Print("OneNote for Windows 10");

The sample for silent printing is available in this GitHub repository.

Printing from console application

Even though the WPF PDF Viewer is a UI component, it can be used in a console application to make use of the features that do not require any user interaction, such as printing, exporting PDF pages as images, and extracting text from PDF files. You can use the silent printing feature in a console application to print PDF files. A sample for that is available in this GitHub location.

Batch printing

Batch printing allows you to print multiple PDF files silently in a single step without any interruption. PDF Viewer allows you to perform batch printing of PDF files, by either selecting the files from a collection or dropping the files in a single directory and iterating the files. The following code shows how to print all the PDF files present in a directory.

PdfDocumentView pdfViewer = new PdfDocumentView();
// Get only the PDF files from a directory using search pattern.
string[] files= Directory.GetFiles("../../Data/", "*.pdf");
for(int i=0;i<files.Length;i++)
{
   pdfViewer.Load(files[i]);
   pdfViewer.Print();
   pdfViewer.Unload(true);
}

The sample for batch printing of PDF files is available in this GitHub repository.

Duplex printing

Duplex printing (also known as double-sided printing) allows you to print on both sides of the paper. It is indispensable when printing brochures, books, and so on, and saves paper. PDF Viewer can perform duplex printing if your printer has built-in duplex support. If your printer supports duplex printing, the PDF Viewer by default enables duplex printing. You can select the desired duplex setting and disable the duplex, using the Duplex property of the printer settings.

pdfViewer.PrinterSettings.Duplex = System.Drawing.Printing.Duplex.Simplex;

Windows service printing

PDF Viewer allows you to print PDF files using a Windows service application, which is ideal for long-running functionality that does not disturb other users who are working on the same computer. When the service starts, you can perform printing in the single-threaded environment by passing a delegate that represents the print method to the Thread object as shown in the following code.

protected override void OnStart(string[] args)
{
    // Set the threading model to STA.
    Thread thread = new Thread(PrintPDF);
    thread.SetApartmentState(ApartmentState.STA);
    thread.Start();
}

Define the print method as follows.

void PrintPDF()
{
     PdfDocumentView pdfViewer = new PdfDocumentView();
     // Load the PDF document to be printed.
     pdfViewer.Load(“Pass the full path of the PDF file to be printed here…”);
     // Print the PDF document silently using the printer name.
     pdfViewer.Print(“Pass your printer name here…”);
}

Note: You need to specify the printer name by passing it as a parameter in the Print method as mentioned in the previous code example. Otherwise, the service cannot detect the printer, even if the default printer is set.

The Windows Service sample for printing PDF files is available in this GitHub repository.

Conclusion

Thank you for reading this blog. I hope that you have enjoyed exploring the printing functionality of the WPF PDF Viewer. Try using our PDF Viewer in your application and share your feedback in the comment section below.

If you’re already a Syncfusion user, you can download the product setup on the downloads page. Otherwise, you can download a free, 30-day trial here.

If you have any questions on these features, please contact us through our support forumDirect-Trac, or feedback portal. We are happy to assist you!

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed