epub

How can I change font color and font style of ePub Book in iOS?

二次信任 提交于 2019-12-03 08:32:36
I have created app of books which supports pdf and ePub format. In that app, pdf is just shown as an image and ePub open in webview because EPUB is just XHTML stored in a zipfile with an XML manifest. Now, I want to change the font style and font color of ePub book pages. Is it possible? If possible, then how can I achieve this? I have searched a lot, but did not get any proper solution. Hiren I have found the solution. I have make a string and evaluate using Java string This is what I have written: NSString *varMySheet = @"var mySheet = document.styleSheets[0];"; NSString *addCSSRule = @

How do I display epub format book in pure HTML5/CSS/Jquery

北慕城南 提交于 2019-12-03 06:04:01
Is it possible to display epub format books in web browser using pure HTML5, CSS and Jquery? Could anybody please suggest how do I do this? I have to also make this responsive to be able to make it work on iPad. I know that but I don't know how do I read the epub using HTML and Javascript. The epub may contain some mathematical functions and I need to display them properly too. Is it possible to display epub format books in web browser using pure HTML5, CSS and jQuery? Yes, it is possible. Why do you want to write an epub reader? There are already many out there. In any case, your question is

Create Kindle book programmatically using C#?

血红的双手。 提交于 2019-12-03 04:24:51
问题 I have an idea for a project but it will require being able to create Kindle books on the fly on the server and preferably in .net. I haven't found any libraries to do this however. I see that there are epub libraries, but these would then still need to be converted to azw. Is this possible, and if so does anyone have any pointers please? 回答1: I am doing something similar. One way to go about it is: Create a specially formatted HTML file with your book (see info on kindle formatting guides

CHM format alternatives?

随声附和 提交于 2019-12-03 03:16:11
Microsoft CHM format is great as provide such facilities: Table of contends with tree view. Index. Indexed search. Based on HTML source. But this format is outdated and have many drawbacks: Have security issues (allow execute JavaScript code). Don't know about new HTML formats. Not documented. Can not properly handle different character codings (like UTF-8). Are there any alternatives for CHM which have reader and compiler for all desctop OSes? PS . I hear that QT come this something like, KDE, NetBeans also use own help format. How about non-vendor specific? PPS . Some related: http://live

ePub library for java or android

匿名 (未验证) 提交于 2019-12-03 03:10:03
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Is there any library to read ePub format? I found ePublib in http://github.com/psiegman/epublib . I'm still learning how to use it. Is there ePub jar which works for Android? 回答1: I am the author of epublib. It now runs on Android. See http://www.siegmann.nl/epublib/android 回答2: You can use Folio Reader for this purpose. To use , add this to gradle: compile 'com.folioreader:folioreader:0.2.5' And if you have the .epub file in assets folder, you can load the file as : Intent intent = new Intent ( HomeActivity . this , FolioActivity

tutorial to create e-book read application - epub file formate [duplicate]

六眼飞鱼酱① 提交于 2019-12-02 21:25:34
This question already has an answer here: Reading ePub format 6 answers I am making an application of e book reading, in that i want to perform some operations like change text color, font, select a text etc. I come to know that iphone os 4.0 and ipad are now supporting epub file formate, but I am not able to know how to create such kind of application. If any one knows how to create such applications please let me know. thanks in advance Here are some links regarding e-pub http://en.wikipedia.org/wiki/EPUB http://code.google.com/p/epub-tools/ Tony There is a full tutorial for creating mobi

How to split up Epub Html into pages according to screen size

五迷三道 提交于 2019-12-02 18:27:21
I'm developing an Android application that reads ebooks (in epub format) and as for now I'm using Paul Siegeman's epublib library that is really a very good epub reader but it has some limitations, for example and the one I need, you can't move through pages horizontally (as you do reading a real book) so I need my own implementation of it, but I'm stuck. The method that actually reads the epub and then puts it inside a webview is the next: private void openEpub(String bookFilename){ WebView webView = (WebView) findViewById(R.id.webView); nl.siegmann.epublib.domain.Book book=null; try { book =

page turn Animation on UIWebView in iPhone

笑着哭i 提交于 2019-12-02 08:40:12
问题 I am new to iPad developer, I'm using UIWebView on the iPhone to display EPUB content, but I want to implement page turning animation similar to book. I had seen many demos of page turn effects, but they all are related to view not UIWebView , for eg: see demo I want to implement this page turn effect. on UIWebView would this be possible? or Should I stop dreaming. Thanks In Advance ! 回答1: see this tutorial http://www.techotopia.com/index.php/An_Example_iOS_5_iPhone_UIPageViewController

在 Ubuntu 下安装 Sigil

蹲街弑〆低调 提交于 2019-12-02 03:42:14
最近购置了台 kindle paperwhite ,用下来感觉看书的效果真好。就是对有些书的格式不是很满意,为此想编辑下。 网上搜了下发现此款 ePub 编辑器: Sigil 。 Sigil 的简单介绍: 一款免费开源的ePub编辑器 跨平台:windows、linux、Mac 完美支持UTF-16 ( 支持中文 ) 界面支持多语言:支持简体中文及繁体中文 详细的文档请访问 Sigil 。 在此分享下在 Ubutnu 系统下的安装过程: 添加源: sudo add-apt-repository ppa:rgibert/ebook 更新源: sudo apt-fast update 安装: sudo apt-fast install sigil 启动: sigil 或 "应用程序 --> 附件 --> Sigil" 说明: apt-fast 是 apt-get 的加速工具,利用 axel 或 aria2c 进行下载。 以上在Ubuntu 12.04 系測試通過。 来源: oschina 链接: https://my.oschina.net/u/879049/blog/122183

IOS - toolbar is not appearing on top

谁说我不能喝 提交于 2019-12-01 12:58:32
i have asked this question here also but i didn't get any solution.so i am asking here again with the full explanation. I downloaded EPub Reader library from here . When i run this library,first comes a table view which contain four rows having values EPUB ,PDF etc and after clicking on the "EPUB" row book appears successfully with the top toolbar. Because i have to load the book first in start instead of showing the toolbar i did some changes with the code. copied some code from didSelectRowAtIndexPath and added that code into delegate.m. so now the problem is book is successfully loading but