Visual C#.NET: Convert PDF to Word
How to convert PDF to Word using C#.NET
Yiigo.Image for .NET PDF Plugin has those following functionalities:
This document provides comprehensive Visual C#.NET samples for guiding developers to convert PDF to Word using Yiigo.Image for .NET. Find more PDF conversion tutorials on VB.NET PDF Conversion to Word, Web Imaging Viewer PDF to Word Conversion Support and Convert PDF to Word in .NET Winforms.
PDF Converting to Word with C#.NET Sample Code Requirements
If you want to convert PDF to Word in Visual C#.NET, make sure that you have installed. Start to Convert
- Open and run your Microsoft Visual Studio;
- Choose either "Visual C# Projects" in "New Project" dialog box;
- Choose "Windows Application" in the "Templates" List and name it "YiigoImagingPdfConvertWordCsharp";
- Right-click on the "References" folder, and select "Add Reference..." from the context menu in the "Solution Explorer" window;
- In the "Add Reference" dialog box, select the ".NET" tab and browse to Yiigo.Imaging.Net.dll library and Yiigo.Imaging.Net.Pdf.Read.dll;
- Add it to your Visual C# applications;
- Call Yiigo .NET Image Namespace & Copy those following codes:
using System.IO; using System.Drawing.Printing; using Yiigo.Imaging; using Yiigo.Imaging.Processing; using Yiigo.Imaging.Conversion;
using YiigoImage Image = new YiigoImage(); // Convert Word to PDF documents public void ConversionWordtoPdf(); { string WordFileName = (@"C:\ yiigo_example.docx"); ImageFormat ImageFormat = ImageFormat.pdf; } public Image ConversionPdftoWord(@"C:\ yiigo_example.docx", ImageFormat.pdf); doc.Save(@"C:\ yiigo_example.pdf");
// Convert PDF documents to Word public Image ConversionPdftoWord(); { string PdfFileName = (@"C:\ yiigo_example.pdf"); int PdfPageNumber = "1"; ImageFormat ImageFormat = ImageFormat.docx; } public void ConversionWordtoPdf(@"C:\ yiigo_example.pdf", "1", ImageFormat.docx); doc.Save(@"C:\ yiigo_example.docx"); | 
Products Overview Tech Specs Features Other Plugins Image Viewer CoreBarcode PluginPDF Read & WriteTesseract OCR PluginForm Processing PluginJBIG2 CodecJPEG2000 CodecISIS ScannerTwain ScannerDICOM ReaderCAD Scanner
|