English 中文(简体)
How to programatically publish ebooks to Kindle, Sony Reader etc.? [closed]
原标题:

Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn t work, and the expected results. See also: Stack Overflow question checklist

Closed 9 years ago.

I would like to use .NET platform to do this. I should be able to convert word documents, pdf files, assign a password and publish it to kindle, sony reader. Any ideas? Thanks!

问题回答

Check Calibre ( http://calibre-ebook.com/ ), it has a command line interface and several conversion options to convert things to .mobi, which can then be sent to Kindle.

I m not sure about word documents. I d convert word documents to PDF s. There are libraries available to convert word docs to PDFs. The Kindle and Sony Reader both support PDF s. As for programatically publishing them to the reader. I have never tried.

Both the kindle and sony reader can read pdf s so you can use this directly. There are also several libraries for .Net which can programatically create pdf files.

Not sure how you want to publish. As I have only operated a kindle you can either save to it over USB or email it to username@kindle.com in order to transfer a file. I don t think you can push it yourself like Amazon does.

An alternative to pdf are the mobi file format. More information at http://wiki.mobileread.com/wiki/MOBI#Format





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签