How to convert a Word document to PDF in ASP.NET Core?
Syncfusion® Essential® DocIO Renderer is a .NET Core Word to PDF conversion library (Essential® DocIO and Essential® PDF) used to convert Word documents to PDF in an ASP.NET Core application [C#].
Steps to convert a Word document to PDF programmatically in ASP.NET Core:
- Create a new C# .NET Core console application.
- Install the Syncfusion.DocIORenderer.NET.Core NuGet package as a reference to your .NET Core application from NuGet.org.
- Include the following namespace in the Program.cs file.
C#
using Syncfusion.DocIO.DLS; using Syncfusion.DocIORenderer; using Syncfusion.Pdf; using System.IO;
- Use the following code snippet to create a Word document with “Hello World” text and convert a Word document to PDF.
C#
// Creates a new Word document. WordDocument wordDocument = new WordDocument(); // Add a section & a paragraph in the empty document. wordDocument.EnsureMinimal(); // Append text to the last paragraph of the document. wordDocument.LastParagraph.AppendText("Hello World...!"); // Create an instance for DocIORenderer for Word to PDF conversion DocIORenderer render = new DocIORenderer(); // Converts Word document to PDF. PdfDocument pdfDocument = render.ConvertToPDF(wordDocument); // Release the resources used by the Word document and DocIO Renderer objects. render.Dispose(); wordDocument.Dispose(); // Saves the PDF file. FileStream outputStream = new FileStream(@"Output.pdf", FileMode.CreateNew, FileAccess.Write); pdfDocument.Save(outputStream); // Closes the instance of PDF document object. pdfDocument.Close(); // Dispose the instance of FileStream. outputStream.Dispose();
A complete working example of how to convert a Word document to PDF using the .NET Core Word library can be downloaded from WordToPDF_Example.Zip.
By executing the example program, you will get the PDF document as shown below.
Take a moment to peruse the documentation, where you can find other file format conversions with code examples and the procedure to deploy the application in a Linux OS.
Explore more about the rich set of Syncfusion® Word Framework features.
An online example to convert a Word document to PDF in an ASP.NET Core web application.
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from a trial setup or from the NuGet feed, include a license key in your projects. Refer to the link to learn about generating and registering theSyncfusion® license key in your application to use the components without a trial message.
Conclusion
I hope you enjoyed learning about how to convert a Word document to PDF in ASP.NET Core.
You can refer to our ASP.NET Core Word feature tour page to learn about its other groundbreaking features and documentation, and how to quickly get started with configuration specifications. You can also explore our ASP.NET Core Word example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums or feedback portal. We are always happy to assist you!