支持 .epub 格式的 API
我听说 iPad 支持 .epub 格式。那么是否有任何 API 可以轻松读取和显示 .epub 格式文件?
谢谢
I have read that iPad supports .epub format. So are there any API's which makes it easy to read and display .epub format files?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
epub 只是 xhtml 文件和元数据(索引、出版商、作者详细信息等)的压缩集合Epub 规范< /a>
因此,您需要做的就是解压缩文件(可以通过重命名为 .zip 扩展名来完成),然后在浏览器中读取 XHTML 文件。将有一个 .opf 文件,其中列出了 zip 中的所有文件。
这假定 epub 文件不受 DRM 保护,如果是这样,那么您无法读取它,除非通过指定 DRM 使用的程序(通常是 Adobe Digital Editions)在计算机上 - 或 iPad 上的 iBooks)DCMA 或许多国家/地区的其他法律不允许破解此加密。
epub is simply a zipped up collection of xhtml files and metadata (indicies, publisher, author details etc) Epub specs
So all you need to do is unzip the file (can be done by renaming to a .zip extension) and then read the XHTML files in a browser. There will be a .opf file that lists all the files that are in the zip
This assumes that the epub file is not DRM protected if so then you cannot read it except through the program that the DRM is specified to use (usually Adobe Digital Editions on a computer - or iBooks on an iPad) Breaking this encryption is not allowed by DCMA or other laws in many countries.
您不需要 API 来显示 epub,如上所述,它只是文件和文件夹的压缩集合。
您需要一种方法来解压缩、查找文件并简单地将其显示在 UIWebView 中。
如果你想要翻页和分页,那是一个完全不同的野兽
You dont need an API to display the epub, as said above it is simply a zipped collection of files and folders.
You need a way to unzip, find the files and simply display it in a UIWebView.
If you want page turning and pagination that is a totally different beast