How to generate PDF report starting from Word document
Syncfusion® Essential® DocIO is a .NET Word library used to create, read, and edit Word documents programmatically without Microsoft Word or interop dependencies. You can generate PDF report starting from Word document by using Essential® DocIO and Essential® PDF. Below steps need to be followed,
- Create a Word document from scratch
- Perform Mail merge
- Convert the Word document to PDF
For more information about the required assemblies and NuGet packages, please refer our below UG documentation:
Word to PDF conversion assemblies
Word to PDF conversion NuGet packages
Step 1: Create a Word document from scratch
Create template Word document with merge fields using Essential® DocIO.
The following code example shows how to create a Word document template with merge fields.
C#
// Creates a new instance of Word document WordDocument document = new WordDocument(); // Adds one section and one paragraph to the document document.EnsureMinimal(); // Sets page margins to the last section of the document document.LastSection.PageSetup.Margins.All = 72; // Appends text to the last paragraph document.LastParagraph.AppendText("Emp_Id: "); // Appends merge field to the last paragraph document.LastParagraph.AppendField("Emp_Id", FieldType.FieldMergeField); document.LastParagraph.AppendText("\nName: "); document.LastParagraph.AppendField("Name", FieldType.FieldMergeField); document.LastParagraph.AppendText("\nPhone: "); document.LastParagraph.AppendField("Phone", FieldType.FieldMergeField); document.LastParagraph.AppendText("\nCity: "); document.LastParagraph.AppendField("City", FieldType.FieldMergeField); // Saves and closes the WordDocument instance. document.Save("Template.docx", FormatType.Docx, HttpContext.Current.Response, HttpContentDisposition.Attachment); document.Close();
VB
' Creates an instance of a WordDocument Dim document As New WordDocument() ' Adds one section and one paragraph to the document document.EnsureMinimal() ' Sets page margins to the last section of the document document.LastSection.PageSetup.Margins.All = 72 ' Appends text to the last paragraph. document.LastParagraph.AppendText("Emp_Id: ") ' Appends merge field to the last paragraph document.LastParagraph.AppendField("Emp_Id", FieldType.FieldMergeField) document.LastParagraph.AppendText(vbLf & "Name: ") document.LastParagraph.AppendField("Name", FieldType.FieldMergeField) document.LastParagraph.AppendText(vbLf & "Phone: ") document.LastParagraph.AppendField("Phone", FieldType.FieldMergeField) document.LastParagraph.AppendText(vbLf & "City: ") document.LastParagraph.AppendField("City", FieldType.FieldMergeField) ' Saves and closes the WordDocument instance. document.Save("Template.docx", FormatType.Docx, HttpContext.Current.Response, HttpContentDisposition.Attachment) document.Close()
The generated template document looks as follows.
Step 2: Perform Mail merge
The Mail Merge operation replaces the matching merge fields with the respective data.
The following code example shows how to perform a simple Mail Merge in the template Word document with string array as data source.
C#
// Opens the template document WordDocument document = new WordDocument("Template.docx"); // Gets the data for Mail merge string[] fieldNames = new string[] { "Emp_Id", "Name", "Phone", "City" }; string[] fieldValues = new string[] { "1001", "Peter", "+122-2222222", "London" }; // Performs the Mail merge document.MailMerge.Execute(fieldNames, fieldValues); // Saves and closes the WordDocument instance. document.Save("WordReport.docx", FormatType.Docx, HttpContext.Current.Response, HttpContentDisposition.Attachment); document.Close();
VB
' Opens the template document Dim document As New WordDocument("Template.docx") ' Gets the data for Mail merge Dim fieldNames As String() = New String() {"Emp_Id", "Name", "Phone", "City"} Dim fieldValues As String() = New String() {"1001", "Peter", "+122-2222222", "London"} ' Performs the Mail merge document.MailMerge.Execute(fieldNames, fieldValues) ' Saves and closes the WordDocument instance. document.Save("WordReport.docx", FormatType.Docx, HttpContext.Current.Response, HttpContentDisposition.Attachment) document.Close()
The resultant Word document looks as follows.
Step 3: Convert the Word document to PDF
The following code example illustrates how to convert a Word document into PDF document.
C#
// Opens the template document WordDocument document = new WordDocument("WordReport.docx"); // Creates an instance of the DocToPDFConverter DocToPDFConverter converter = new DocToPDFConverter(); // Converts Word document to PDF document PdfDocument pdfDocument = converter.ConvertToPDF(document); // Closes the instance of Word document object document.Close(); //Releases all resources used by DocToPDFConverter object converter.Dispose(); // Saves the report as PDF document pdfDocument.Save("PDFReport.pdf", HttpContext.Current.Response, HttpReadType.Save); // Closes the instance of PDF document object pdfDocument.Close(true);
VB
' Opens the template document Dim document As New WordDocument("WordReport.docx") ' Creates an instance of the DocToPDFConverter Dim converter As New DocToPDFConverter() ' Converts Word document into PDF document Dim pdfDocument As PdfDocument = converter.ConvertToPDF(document) ' Closes the instance of Word document object document.Close() 'Releases all resources used by DocToPDFConverter object converter.Dispose() ' Saves the report as PDF document pdfDocument.Save("PDFReport.pdf", HttpContext.Current.Response, HttpReadType.Save); ' Closes the instance of PDF document object pdfDocument.Close(True)
The generated PDF report looks as follows.
A complete working example of how to generate PDF report starting from Word document in ASP.NET Web Forms can be downloaded from Word to PDF.zip
Take a moment to peruse the documentation, where you can find basic Word document processing options along with features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly PDF and Image conversions with code examples.
Explore more about the rich set of Syncfusion® Word Framework features.
An online example to convert Word document to PDF.
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.