Click here to Skip to main content
15,902,032 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all, i need your help solve this problem , i want to know that how to read the content of PDF file into the Word Document in C# .



Thanks,
palanivel.R
Posted

Here in Codeproject you can find good sources and answers:
www.codeproject.com/Articles/12445/Converting-PDF-to-Text-in-C

or:
www.melbtest.com.au/woa/pdf-excel_download.htm
 
Share this answer
 
You can use iText library available in c#.

You may also work with PDFFocus.Net library file.
By using PDF Focus.Net, the code to convert pdf to word will be as small as :

SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
f.OpenPdf(@"c:\Pushkin Poems.pdf");
if (f.PageCount > 0)
{               
f.ToWord(@"c:\Pushkin Poems.doc");
} 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900