you can try the PDFLib open source library to convert pdf to text, and then show this text in textbox.
i find another pdf to text converter http://www.xspdf.com/guide/pdf-text-extracting/ using c#.net, before your coding, you can try this tool to test the result.
The solution depends on how the text is stored in the PDF. If both English and Marathi are stored as text (for Marathi it has to be Unicode), you might be able to parse the text and retrieve it using a suitable library like this.
If the text is stored as images and not real strings, you could try to use OCR. For English, there are plenty of options but for Marathi, the choices will likely be much more limited. Try to search the web for such an OCR library.
Jony GreenPosted Oct 28, 2015, 11:08 PM
Upendra Pratap ShahiPosted Jun 18, 2015, 7:18 AM
Lewis GoodwinPosted Jun 18, 2015, 6:09 AM
Hello ajit,
The solution depends on how the text is stored in the PDF. If both English and Marathi are stored as text (for Marathi it has to be Unicode), you might be able to parse the text and retrieve it using a suitable library like this.
If the text is stored as images and not real strings, you could try to use OCR. For English, there are plenty of options but for Marathi, the choices will likely be much more limited. Try to search the web for such an OCR library.