epub

Page-curl animation by harism not working properly when a page turns backwards

只愿长相守 提交于 2019-12-11 04:13:35
问题 I am developing an epub reader and I use page-curl by harism to get the page-curl animation. It works well for left to right side(When user reads forward) and loads the correct pages accordingly. But if I turn a page backwards, it's loading the previous page which is ok. Then if I further moves back then it loads a wrong page. For example : I go through pages until 5, then go back it loads page 4. If I go to another page back it should load page 3. Instead it loads page 6. I know this

Objective C ePub framework

此生再无相见时 提交于 2019-12-11 02:38:31
问题 I am looking to implement an eBook reader app. I have found an open source PDF viewer that suited my needs. I now would like to know if there are any open source ePub viewers that I could leverage into the app. Does anyone know of open source ePub viewers? 回答1: Try this https://github.com/fedefrappi/AePubReader 回答2: To provide a more up-to-date answer for those finding this question six years later, two libraries that allow epub parsing & display on iOS are: Folio Reader and Readium

Ebook reader pagination issue in android

老子叫甜甜 提交于 2019-12-11 02:27:52
问题 I am creating an ebook reader for android. I got problems when the content is broken in to pages. Here are 3 screenshots of my app. As you can see the content is not perfectly fit to the screen. For example the last sentence should have been completed on the first image without jumping onto the next page. Also the image of the third pic should have come to the latter part of the second image since there is enough space. In some pages the content goes underneath the navigation bar as well. The

Develop ePub file reader in iOS 5

天大地大妈咪最大 提交于 2019-12-10 20:24:23
问题 I want to develop ePub & PDF reader for iOS devices. For PDF reader , I can display PDF in Web View. So I don't have any problem with PDF. For ePub files, my idea is 1) Download epub files from server & extract it to Documents directory as per requirement. 2) Parse extracted files & display it. 3) Once app closed , delete extracted files from Socuments directory. Required functionality :- 1) Increase / Decrease Font size & brightness 2) Bookmark 3) Left & Right Swipe gesture OR Curl effect

Multiline questionaire editable

断了今生、忘了曾经 提交于 2019-12-10 11:46:31
问题 I want to create a multiline field for a questionaire-like form similar to the ones you see in interactive PDF documents. The input field must span the whole width and wrap at the end of the line or at least after a fixed number of characters. The caption does not necessarily have to be in the same line: Please introduce yourself: _____________________________ ________________________________________________________ There are several things I have tried to achieve this: <p contentEditable=

Can't Unzip EPub File

帅比萌擦擦* 提交于 2019-12-10 10:57:39
问题 IMO, I thought that epub is a kind of zip . Thus, I've tried to unzip in a way. public class Main { public static void main(String argv[ ]) { final int BUFFER = 2048; try { BufferedOutputStream dest = null; FileInputStream fis = new FileInputStream("/Users/yelinaung/Documents/unzip/epub/doyle.epub"); ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis)); ZipEntry entry; while ((entry = zis.getNextEntry()) != null) { System.out.println("Extracting: " + entry); int count; byte

Epub.js - Phonegap not working because of blob URI

有些话、适合烂在心里 提交于 2019-12-10 10:36:02
问题 I'm using Epub.js library to render a .epub file in a Phonegap project. The file gets fetched and unzipped correctly, but then the screen is displayed blank if running in WebView (Works perfect in Desktop and in android browser (Chrome app)). Debugging, I see that the iframe where the epub should be loaded doesn't work, as iframe.onload never gets called. The URL he's trying to access is blob:file%3A///85a6ce73-2b5f-430e-a908-26a7d3d830e4 , so I'm guessing that could be the reason... Cordova

推荐个阅读app 自己定制无广告永不缺书源免费小说阅读,个人感觉比追书等都好用

强颜欢笑 提交于 2019-12-10 08:11:59
最近用看书软件追书的时候,经常发现不能使用的问题,试了几个app发现都有这样的问题,找了好久终于发现一个开源的免费阅读软件,这个软件只是一个框架,可以无限制的定制你的看书网站 软件界面 网站书源可以自己定制,可以自己去除网页中的烦人广告,不过自己定制书源需要好好看教程哦,有点编程基础最好了。 不会定制书源也没关系,有网友提供的书源可以直接使用, 具体使用方法是:点击左上角--书源管理--点击右上角--网络导入--导入书源网址 这样你就可以愉快的看书了,用了这么多看书软件,这个是最纯净,最好用的看书软件了 应用简介 如今的小说阅读软件总是在不断的添加广告,作为一个程序猿这是受不了的,于是开源的阅读软件来了,你不用再担心广告。本软件fork一个开源的软件,代码经过大量修改,更符合使用习惯。 主要功能 自定义书源,自己设置规则,抓取网页数据,规则简单易懂,软件内有规则说明。 列表书架,网格书架自由切换。 书源规则支持搜索及发现,所有找书看书功能全部自定义,找书更方便。 支持替换净化,去除广告替换内容很方便。 支持本地TXT、EPUB阅读,手动浏览,智能扫描。 支持高度自定义阅读界面,切换字体、颜色、背景、行距、段距、加粗、简繁转换等。 支持多种翻页模式,覆盖、仿真、滑动、滚动等。 软件开源,持续优化, 无广告 。 快速下载链接: http://www.90pan.com/b1464654

Creating an Epub file with a Zip library

僤鯓⒐⒋嵵緔 提交于 2019-12-10 03:06:18
问题 HI All, I am trying to zip up an Epub file i have made using c# Things I have tried Dot Net Zip http://dotnetzip.codeplex.com/ - DotNetZip works but epubcheck fails the resulting file (**see edit below) ZipStorer zipstorer.codeplex.com - creates an epub file that passes validation but the file won't open in Adobe Digital Editions 7 zip - I have not tried this using c# but when i zip the file using there interface it tells me that the mimetype file name has a length of 9 and it should be 8 In

Why ibooks doesn't give text highlights and add notes functionality in fixed layout epub?

廉价感情. 提交于 2019-12-09 19:40:02
问题 Is it possible to add text highlights in fixed layout epub. I added text highlights and add notes in normalize epub by using bellow code: [webview stringByEvaluatingJavaScriptFromString:@" var selection = "";\ var results = "";\ var idspan = "";\ "]; [webview stringByEvaluatingJavaScriptFromString:@"if (window.getSelection) {\ selection = window.getSelection();\ }\ if (selection.rangeCount > 0) {\ var range = selection.getRangeAt(0);\ var span = document.createElement(\"span\");\ span.id = \