robob
robob

Reputation: 1759

making ePub with Java API

I'm relatively new to ePub format, but if I understand well, to make programmatically an ePub starting from XHTML or PDF content could mean:

So my question is if there is some sort of high level Java API to do these steps. Sure I can use API for ZIP, XML in Java, but does it exist higher tools?

thanks a lot

------ EDIT -------

I've developed an open source project to do that!

http://scribaebookmake.sourceforge.net/

Upvotes: 7

Views: 9686

Answers (3)

torkildr
torkildr

Reputation: 335

The following is a shameless plug for a project that I've been working on myself. It is basically EPUB tooling written in Java, for Eclipse. It comes with an API, UI and an Ant task that allows you to do pretty much everything. See http://help.eclipse.org/kepler/topic/org.eclipse.mylyn.docs.epub.help/help/introduction.html

Upvotes: 1

khmarbaise
khmarbaise

Reputation: 97407

You should take a look at this project which seemed to be converting PDF to epub.

Upvotes: 1

Edwin Buck
Edwin Buck

Reputation: 70909

I haven't seen a java epub toolchain; however, I have been having good success with Sigil.

If the goal is to make an epub, I'd give Sigil a go. Before I used it I was rolling my epubs by hand (with the automation of an ant build.xml).

If the goal is to make a java based epub toolchain, then it shouldn't be terribly hard, depending on how much validation and pipelining you wish to do. Personally, I'd start with writing an epub viewer.

As far as the PDF parts go, I just embed XHTML. Haven't had a need for embedding PDF yet. As far as epub validation goes, if all the xml is valid and there's no dangling links prior to zipping, you're going to have a valid epub.

Upvotes: 2

Related Questions