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 ?
Epub or Mobi Sdk for xamarin
1.7k views Asked by Deva Palanisamy At
3
There are 3 answers
1
On
You could try this one - https://epubear.scand.com/. It stands for Xamarine as well as for Android & iOS. Fairly faster than SkyEpub, not buggy and doesn't remind me of construction set with lots of unuseful features & tools. Reliable, easy to drive and the team is fast to respond in case you might need help.
10
On
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);
Just checked few nugets with following results: