Create Kindle book programmatically using C#?

前端 未结 2 811
渐次进展
渐次进展 2021-01-31 20:54

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

2条回答
  •  情深已故
    2021-01-31 21:04

    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.

提交回复
热议问题