How to convert PDF to MS Word
How to convert PDF to MS Word with same format using Asp.net MVC ?? Help will be appreciated.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mageshwaran RPosted Nov 22, 2019, 12:43 PM
Gajendra JangidPosted Jun 13, 2019, 6:06 AM
Atir TahirPosted Jun 13, 2019, 3:01 AM
Rafnas T PPosted Mar 10, 2017, 6:42 AM
Gnanavel SekarPosted Mar 10, 2017, 1:30 AM
Maen BadwanPosted Mar 9, 2017, 1:25 PM
Jyoti,
I think one of the good free approaches to convert PDF to MS Word doc files is using iTextSharp in conjunction with Interop.Word from Microsoft. More details can be found here:
https://www.codeproject.com/Questions/295637/how-to-convert-the-pdf-to-doc-in-net
The following code shows how you can convert PDF to DOCx file using LEADTOOLS methods:
+------------------------------+
using (DocumentConverter documentConverter = new DocumentConverter())
{
var inFile = @"c:\Documents\Source.pdf";
var outFile = @"c:\Documents\Target.docx";
var format = DocumentFormat.Docx; // or DocumentFormat.Doc
var jobData = DocumentConverterJobs.CreateJobData(inFile, outFile, format);
jobData.JobName = "conversion job";
var job = documentConverter.Jobs.CreateJob(jobData);
documentConverter.Jobs.RunJob(job);
{
MessageBox.Show("Success");
}
}
+------------------------------+
More details can be found here:
https://www.leadtools.com/help/leadtools/v19/dh/doxc/leadtools.documents.converters~leadtools.documents.converters.documentconverter.html
Bikesh SrivastavaPosted Dec 21, 2016, 12:32 PM
Jyoti KumariPosted Dec 21, 2016, 6:55 AM
Subhashkumar YadavPosted Dec 21, 2016, 5:13 AM
Leon DPosted Dec 21, 2016, 2:30 AM
Rajeesh MenothPosted Dec 21, 2016, 1:55 AM
Manas MohapatraPosted Dec 21, 2016, 1:33 AM
Mangesh GPosted Dec 21, 2016, 12:09 AM