I want to create and read ePub file using some information programmatically in iPhone. Please help me how can create and read ePub file.
Get this epub-checker app for generating epub file easy way
http://www.pagina-online.de/produkte/epub-checker/
Related
I am working on editor application. I am able to create editor & I generated html file from
RichText using webView. Now client wants to save this html file into .docx format.
I searched too much in iOs sdk to convert .html into .docx but could not found any help.
During search I found following link
http://htmltodocx.codeplex.com/
This is a php file.
Now I want integrate this file in my xcode.
Now my problem is that how I integrate this php code file in iOs?
OR is there any other option to generate .docx file from .html file in iOs?
Any help or idea would be geat.
Thanks
i am new to iPad development. I am making iPad applications. In my application i want to create an epub file using Xcode 4.2, is there any demo tutorial available for making ePub file using Xcode. I have searched in google but i havn't found any thing which starts from basic..
can any one give me basic ideas, how to start ??
I don't know any code examples which shows how to generate ePub in objective c, but ePub is pretty easy format. It's zip file with structurized content based on xml files http://www.jedisaber.com/eBooks/Tutorial.shtml
You can build your solution based on projects in other languages, like, in ex. Ruby ePub generator https://github.com/jugyo/eeepub or C# http://sourceforge.net/projects/epubhub/
I have made and ebook (in epub format to post on apple ibookstore), is there a way I can convert epub into a format readable on Android based phones/operating system ?
your reply will be highly appreciated, Thanks a lot in advance :-)
Android devices are able to open ePub books/documents. There are several ePub applications available in the Android Market.
Take a look here:
https://market.android.com/search?q=epub&so=1&c=apps
Which means you don't actually need to convert your ePub to any other format. Hope this helps.
The only way to convert a epub in to readble form is this - first compress epub then open it again it will generate some meta data related to epub files and you can fetch the data from the generated files because these files will be in the html and xml.In the generated file you will get the all infroamtion of the epub from content.opf , meta.inf(xmlfiles),toc.ncx.
Thanks,
I imported pdf file to iphone device using iTunes. I verified that the pdf file stored in 'root/user/media/books' path. Can i read this file in my program?
Is there any way to read the file? Please Help me.
Thanks in advance.
The SDK doesn’t provide any access to the books (including PDFs) in the user’s media library. For your app to read a PDF that was added via iTunes, it needs to be added to your app specifically, using the iTunes file sharing malarkey (look up “UIFileSharingEnabled” for more information on that). You can file an enhancement request with Apple to try to get them to add support for accessing the user’s book library, but don’t count on it.
Here is a guide on how to view a pdf on the screen. Here is a previous post about how to parse a pdf using CGPDFScanner. Hope that helps!
How can I extract text from a PDF file using the iPhone SDK and Objective C?
I have successfully read the PDF file, so does anyone have an idea how I can implement this functionality?