views:

83

answers:

2

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!

A: 

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.

Chuck Conway
A: 

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 [email protected] 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

Mikael Svenson
Thanks Mikael! Is there any security enabled around [email protected]? What if I send a pdf file to [email protected], even though it is not my account?
WinFXGuy
You have to authorize the senders address, to prevent spam.
Mikael Svenson
But, how do you that, say if I am using asp.net to send a ebook to [email protected]? Any documentation? Thanks!
WinFXGuy
Take a look at http://stackoverflow.com/questions/1196059/itextsharp-sending-in-memory-pdf-in-an-email-attachment
Mikael Svenson