For the e-book I should be using and how to get started
I want to develop such an application through which I can read a book, I am currently using Richtextbox in a streaming document, I do not want to use scrolling, I prefer the navigation style i.e. previous page, next page, beginning and end, a book can contain image tables this way, and how to import books into my application
How can I achieve?
Hello,
Aamir
+2
a source to share
2 answers
You will need to write code to extract text from a word or pdf document.
You can extract text from a Word document using Word Automation.
In pdf files, you can use the iTextSharp library:
http://itextsharp.sourceforge.net/
For other formats, you can use the FBReader source as a sample:
http://www.fbreader.org/downloads.php
+1
a source to share