16

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?

Sam Delaney
  • 325
  • 3
  • 16

2 Answers2

14

I am doing something similar. One way to go about it is:

  1. Create a specially formatted HTML file with your book (see info on kindle formatting guides below); and
  2. Use the command line Amazon KindleGen tool to generate the eBook.

As far as creating things like the Table of Contents, starting chapters on a new page, and other things that can be accomplished in a Kindle eBook, you may want to read a kindle formatting guide, such as the Amazon Kindle Publishing Guidelines.

Also, you may want to read a book by a third party on the subject. I have personally read Kindle Formatting by Joshua Tallent and How to Format Perfect Kindle Books by Steven Lewis and they both contain the information needed for properly formatting a kindle book using an HTML file. You can obtain both books from Amazon. The Tallent and Lewis books are aimed at authors that may have never created an HTML file by hand and guide you thru the process.

user7116
  • 60,025
  • 16
  • 134
  • 166
4

You can try with Calibre. It has support for .mobi file format.

If you are already able to create an EPUB file, use the Calibre command line tool ebook-convert.exe:

ebook-convert.exe c:\file.epub c:\file.mobi --output-profile=kindle

As an alternative, you can produce PDF files, as they are supported by Kindle.

Jørn Schou-Rode
  • 35,883
  • 13
  • 81
  • 120
  • Please could you update your answer with details on how I can use Calibre to create .mobi files using .net. – Sam Delaney Apr 27 '12 at 09:39
  • If you are already able to create a epub file, use Caliber command line tool ebook-convert.exe: ebook-convert.exe c:\file.epub c:\file.mobi --output-profile=kindle –  Apr 27 '12 at 10:26
  • Thanks for updating your answer Jaime. Possibly why you got the downvote from someone. – Sam Delaney Apr 27 '12 at 10:39