How to Convert RTF File to WinForms PDF using Essential DocIO?
The native RTF to WinForms PDF Viewer conversion present in Pdf. Base library has few limitations such as inability to render watermarks, header footer, page break etc. To overcome these limitations, the user can make user of the DocIO. Base library to convert the RTF to WinForms PDF Viewer
The below code snippets and working sample explains how to convert RTF to WinForms PDF Viewer using the DocIO. Base library.
Syncfusion.DocIO.DLS.WordDocument wordDoc = new Syncfusion.DocIO.DLS.WordDocument(@"../../RTFtoDoc.rtf"); Syncfusion.DocToPDFConverter.DocToPDFConverter converter = new Syncfusion.DocToPDFConverter.DocToPDFConverter(); PdfDocument pdfDoc = converter.ConvertToPDF(wordDoc); pdfDoc.Save("DoctoPDF.pdf"); System.Diagnostics.Process.Start("DoctoPDF.pdf");
I hope you enjoyed learning about how to convert RTF file to WinForms PDF using Essential DocIO.
You can refer to our WinForms PDF Viewer feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms PDF Viewer 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, Direct-Trac, or feedback portal. We are always happy to assist you!