Let’s learn how to convert a Word document to a PDF programmatically in C# without Microsoft Office or interop.
Syncfusion Word library (Essential DocIO) renders the contents of a Word document page by page and adds the contents of each page to the PDF document using Syncfusion PDF library. This converter can be easily integrated into .NET Framework (WinForms, WPF, ASP.NET Web forms, and ASP.NET MVC), ASP.NET Core, and Xamarin applications. It works well on both full trust and partial trust environments such as Azure applications.
This converter offers several options to customize Word to PDF conversion,
This converter supports all the elements of a typical Word document like text, formatting, images, tables, hyperlinks, fields, bookmarks, table of contents, shapes, headers, footers, etc. Refer to our documentation to know more about Word to PDF-conversion.
using Syncfusion.DocIO; using Syncfusion.DocIO.DLS; using Syncfusion.DocToPDFConverter; using Syncfusion.Pdf;
//Get the path of existing Word document string fullpath = @".../../DocToPDF.docx"; //Loads an existing Word document WordDocument wordDocument = new WordDocument(fullpath, FormatType.Docx); //Creates an instance of the DocToPDFConverter DocToPDFConverter converter = new DocToPDFConverter(); //Converts Word document into PDF document PdfDocument pdfDocument = converter.ConvertToPDF(wordDocument); //Releases all resources used by DocToPDFConverter converter.Dispose(); //Closes the instance of document objects wordDocument.Close(); //Saves the PDF file pdfDocument.Save("DocToPDF.pdf"); //Closes the instance of document objects pdfDocument.Close(true);
The following screenshot illustrates the input Word document.
The next screenshot shows the final PDF document converted from the Word document.
A complete working example of Word to PDF conversion can be downloaded from this GitHub Repository
An online link for Word to PDF conversion example.
If you want to convert the Word documents to PDF in Xamarin or ASP.NET Core applications or in Azure environment, please check the following pages.
Whether you need to convert a Word document to PDF in any .NET platform, the Syncfusion Word to PDF converter libraries makes work easier for .NET developers. Take a moment to peruse the Word to PDF conversion documentation, where you can find other options and features, all with code examples. If you are new to our DocIO library, it is highly recommended to follow our Getting Started documentation.
Explore more about the rich set of Syncfusion Word Framework and PDF Framework features.
As always, your feedback is highly appreciated, so please do reach out in our comments. You can also contact us through our support forum or Direct-Trac. We are happy to assist you!
If you’re already a Syncfusion user, you can download the product setup on Direct-Trac. If you’re not yet a Syncfusion user, you can download a free, 30-day trial on our website.
This post was originally published on May 20, 2014.
If you like this post, we think you’ll also like: