Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Epub or Mobi Sdk for xamarin [closed]

I am thinking of developing Ebook reader in xamarin forms. But I could not find any Epub/Mobi reader SDK anywhere.Is there any xmarin SDK available for Ebook reader ? If it is not available , How can I develop one in xamarin ?

like image 715
Deva Palanisamy Avatar asked Dec 22 '14 09:12

Deva Palanisamy


1 Answers

I have made a port of EpubReader for PCL projects: EpubReader.Cross. It has almost same api except you need to use streams instead paths to files. You can download the library as a package from Nuget: Install-Package EpubReader.Cross

For opening a book without loading content:

var epubBook = EpubReader.OpenBook(stream);

For reading a book:

var epubBook = EpubReader.ReadBook(stream); 
like image 134
Denis Gordin Avatar answered Sep 17 '22 15:09

Denis Gordin