Showing posts sorted by relevance for query prs+. Sort by date Show all posts
Showing posts sorted by relevance for query prs+. Sort by date Show all posts

eReader: ePub Font Customization with PRS+ and Removing Embedded Fonts From ePub Books

So you've bought a Sony PRS-950 in the Best Buy clearance sales and you're just now noticing that the *one* thing you can't easily customize on the device is the default font used for ePub books. We can fix that. All we have to do is load a custom environment onto the device and then you're good to start adding as many fonts as you want.

You will need:

  1. A Sony PRS-950 eReader. 
  2. The Sony PRS+ installation file for your eReader. You can download the file here -- you want the PRSP_950_2.0.12beta_setup.exe file.
  3. The Notepad++ program for your desktop PC.
  4. A font-family of your choice in .ttf extension form (true type font). (Update: I've been informed that .otf files will also work, but I haven't tried them.) You really want a font-family with four versions: Regular, Bold, Italic, and BoldItalic. If you don't get all four, nothing bad will happen except that you won't have a uniform font across those four options -- you'll be reading along in Verdana or whatever and suddenly the text will switch to Times New Roman for the BoldItalic bits. If you can live with that, then grab whatever fonts you want; if you can't live with font-changes, be sure to select a font that comes in those four styles. A good place for free fonts is DaFont; if you're addicted to Windows fonts, you can pillage them from your C:/Windows/Fonts directory.
OK. Ready? Let's go.

PRS+ Installation

First we're going to install PRS+ to your Sony reader. PRS+ is a custom firmware -- it's third-party developed software that loads to your device and lets you do cool things like change the default font. Like everything that's worth doing to an eReader, doing this almost certainly voids your warranty, has a non-zero chance of bricking your device, and should only be installed while sober. I didn't write this code, don't know the people who did, and have only installed this once -- so I take no responsibility for anything that might go wrong as a result of reading my blog, etc.

That out of the way, plug your Sony reader into your desktop computer. Double-click the PRSP_950_2.0.12beta_setup.exe file. The PRS+ installer will check your reader's firmware and tell you to press "Next" to start the installation. This is the point of no return -- pressing next will install the PRS+ firmware on your device.


Fonts Folder

After the installation, open the "READER" directory on your computer -- this is the internal memory for the Sony reader.


The READER drive will have a new folder in it called "database" (and may have the .calibre files if you've used Calibre with the reader before now). We need to add a folder called "fonts" to this directory, so do so now.


Load the font(s) you've decided to try out on your device. You can name the font files whatever you want -- I've decided to name mine all according to a set style (X-Regular.ttf, X-Bold.ttf, etc.) so that the next step is easier, but you can name them whatever you want.

ePub CSS Folder

Now open the database folder that is in the reader directory and dig down until you reach the directory path READER\database\system\PRSPlus\epub. Here is where we are going to need to put some css files to let the reader know what font family to use.


Create a new txt file directory and open it in Notepad or Wordpad or whatever text editor you like.
Copy and paste the following into the text file:

@font-face {
font-family: "Charis";
font-weight: normal;
font-style: normal;
src: url(res:///Data/fonts/Charis-Regular.ttf);
}

@font-face {
font-family: "Charis";
font-weight: bold;
font-style: normal;
src: url(res:///Data/fonts/Charis-Bold.ttf);
}

@font-face {
font-family: "Charis";
font-weight: normal;
font-style: italic;
src: url(res:///Data/fonts/Charis-Italic.ttf);
}

@font-face {
font-family: "Charis";
font-weight: bold;
font-style: italic;
src: url(res:///Data/fonts/Charis-BoldItalic.ttf);
}

body {
font-family: "Charis";
}


The above is my CSS for the Charis font. You're going to need to change the red and the green text for your fonts to work. Let's talk about what the code means:

@font-face {
font-family: "Charis";
font-weight: normal;
font-style: normal;
src: url(res:///Data/fonts/Charis-Regular.ttf);
}

The red text is the name of the font. This is going to be something like Arial, Helvetica, Verdana, Charis, etc. Change this to the name of whatever font you are using. The blue text is the weight of the text -- normal or bold. Similarly, the orange text is the style of the text -- normal or italic. The green text is the location of the font file you've stored in the "fonts" directory. Change this to the font file names you're using, but remember to keep the ".ttf" extension. (Note that you also need to get the cAsEs CoRrEcT.) (Update: If you are using .otf fonts, then change the extension in the CSS to .otf accordingly.)

Basically, all the snippet above is saying is that when the reader sees text that is normal-weight and normal-style, the reader should display the Charis font that lives at the green location.

After making your necessary changes, save the text file and exit your text editor. Now rename the file so that it has a ".css" extension instead of a ".txt" extension. The name of the file doesn't really matter, so I call mine "userstyle.FONTNAME.css".

Encoding with Notepad++

One last step before we're done with all this code. Open up Notepad++. Select File --> Open, and navigate to the CSS file you just saved. Once the CSS file has loaded, open the Encoding menu.


We want the encoding to be either "Encode in UTF-8 without BOM" or "Encode in ANSI". If the file is "Encode in UTF-8" (the third menu option), then the file won't be handled properly by the reader. I use the "Encode in UTF-8 without BOM" option, so that's what I recommend you do. Select that option, and then save the file. Close Notepad++ -- you're done with code.

Using the Font

Unplug your device from the computer and wait for everything load up. Since PRS+ has been installed, you'll notice that the front menu looks slightly different -- that can be customized to your heart's delight later. In the mean time, go to "Settings" down at the bottom right-corner of the home screen.

The first option on the Settings menu should now be "PRS+ Settings". Select that, then select the fifth option down, "Book Viewer Settings". Select "User EPUB Style" and note that your CSS file ("userstyle.FONTNAME.css") should be listed there. Select that puppy.


From now on, when you load up an ePub with your reader, you should have whatever font you've selected as the default. If you ever want to change the default, you can just go back through the menu system again.

But wait, there's one more thing...

See that long title up there? We've only covered half of it. The other half -- removing embedded fonts from epubs -- is necessary if you want to ensure that all your epubs are using the default font you just installed.

What's an embedded font? Well, here's the short version. Sometimes ebooks come with their own special encoding that ensures that a specific font is used with that book. This font usually overrides the e-Reader defaults -- so if you've got your heart set on Verdana and an author throws Times New Roman at you, you're stuck with it unless you modify the epub to remove that embedded font.

Now, you could manually recode all your epub books, but that's a pain and a half, and we have a workaround. See, the trick is that in order for an embedded font to "stick", the device has to have the embedded font available. Since the publisher doesn't know for sure that your specific e-Reader will carry their font, they have to include the font inside the epub file. (An epub file is basically a compressed file -- if you want to see a neat trick, take an epub file, make a copy, and rename the copy's extension to ".zip". Unzip it with WinZip or WinRar and look around at the contents. Neat!)

If we take the font file out of the epub file, then the css in the epub that points to that font file will fail and most devices will just quietly revert to the default device font. And there is a swiffy Calibre program that will automate all that.

So, here is what you will need:
  1. The Calibre program to store your epubs.
  2. This Calibre Modify-epub plugin, courtesy of Kiwidude.
Install Calibre if you aren't using it already and drop your epub files into the library management. Now, click the big Preferences icon on the menu bar and select Plugins from the menu list.


Once in the Plugins menu, select Add a New Plugin at the bottom of the screen.


Select the Modify-epub.zip file and Calibre will install the plugin. When the installation is finished, you will see a Modify ePub icon in the menu bar (if you selected that the menu bar icon be installed with the plugin).


Select an epub (or all of them, if you like) in your Calibre library, and press the Modify ePub icon. The modification dialogue will pop up; check "remove embedded fonts".


Then press "OK". If the selected epub(s) do not contain embedded fonts, you'll get a little message saying that no epubs were changed; if embedded fonts were found and removed, a text dialogue will pop up telling you which epubs were changed and what font was removed.

Important things to remember...
  • The PRS+ custom firmware may "disappear" if you reboot your reader with an SD card still in the slot. Don't panic -- just turn off the reader, remove the SD card, and boot up the device and PRS+ should be "back". Then you can plug your SD card back in as normal. I have no idea why this happens, but I have seen it happen once, so don't worry too much if you see it too.
  • The Modify ePub plugin does not change the epub CSS, it just removes the font files. This means that the epub CSS is pointing to a font that doesn't exist any more. The Sony behavior in these cases is to revert to the default font; other readers may break. Test this out (and backup your library) before converting everything wholesale. 
  • This entire guide is just me showing how I finally got all this to work. I didn't invent any of this, can't take credit for it, and can only provide rudimentary trouble shooting. Credit must go to the clever folks at Mobile Reads for helping me get this far. If you like these methods and can afford to patronize the arts, please donate to the PRS+ team, the Calibre team, and/or Kiwidude to support their coding efforts.

eReader: Device Comparison Shopping

One of the things that people often ask me is, "I'm thinking about buying an eReader. Can I ask you a few questions?" I'm not sure why they ask me this, but Husband says it might have to do with the fact that I own five or six of them. I can quit anytime, you know.

Ahem. Anyway. The answer is always: "YES!" I love talking about eReaders. It's getting me to shut up about eReaders that's the hard thing. However, sometimes I think I should write all this down into a nice big blog post so that people can read all this at their leisure.

The problem with writing about eReaders, though, is that there is always a new line coming out. And even if I do have five or six, that's such a minuscule portion of the market that it's still very safe to say that (a) I don't know everything about what's out there and (b) even if I did, my knowledge would very quickly be out of date. So understanding that, let's talk about some general stuff.

1.  Device Form Factor
So first let's talk about the form factor of the devices out there. The big differences out there are screen size, screen type, navigation type, weight, and integrated reading software. Don't worry, it's not nearly as confusing as it sounds and I want to say right now that your best friend for comparison shopping is going to be this Wikipedia link here on the comparisons between eReaders. So now what does this all mean?

1.1  Screen Size
Screen Size simply means how big is the reading area. Most eReader screens are 6", which is about the size of a mass market paperback book. There are a few dedicated 7" (notably the Sony PRS-950) and 5" (the Sony PRS-350 and the PocketBook 360), and these are good if you want a large screen area for PDF documents and things that don't reflow well, or a small device for carrying around at all times. However, 90% of users will be perfectly happy with a 6" screen.

1.2  Device Weight
Device Weight is equally pretty simple -- it basically comes down to how much the device weighs. This will vary widely, in part because screen size is not the same as device size; there's going to be space around the screen for holding it, and that space can add a lot of weight quickly. In general, lighter is better -- the plastics that eReaders are made from are pretty darn sturdy, and you're going to want to be able to hold your reader with one hand without getting wrist fatigue. Anything under 7 oz is probably fine for the average user, and even I can use the 10 oz Sony PRS-950 without trouble.

1.3  Screen Type: LCD or eInk?
Screen Type is something of a biggie. The first big question is: LCD or eInk? LCD is basically a computer screen: it glows in the dark, it shows color, it works poorly in full sunlight, and some people find it straining on the eyes. eInk is basically grayscale paper: it doesn't glow in the dark, it doesn't show color, it works perfectly in full sunlight, and some people find it relaxing to the eyes. If you go LCD, your options are a tablet (like the Nook Color) or a smart phone. (Or you can also read at the computer.) If you go eInk, your options branch a little further.

1.4  Screen Type: eInk Regular or eInk Pearl?
With eInk, there are a couple more choices, notably: eInk Regular or eInk Pearl. Most new devices -- the Sony PRS line, the Kindle 3, the Nook Simple Touch, and the Kobo Touch -- come with "pearl" screen. Many older devices and third-party lines, including the PocketBook line, have "regular" screens.

eInk Pearl creates a cleaner, sharper image than eInk Regular. Since Pearl screens are available on most newer devices, it's usually just as cheap and easy to get a Pearl screen than a Regular one. However, if the device you have your heart set on isn't a Pearl device, you may not end up noticing or caring -- for most people the difference is only noticeable for books with pictures. Here are some photographs I took to demonstrate the difference:

eInk Regular (PocketBook 360)

eInk Pearl (Sony PRS-950)

1.5  Navigation Type: Touch or Keys?
There are two types of screens: touch screens and non-touch screens. Touch screens mean that you can use your finger (and possibly a stylus, depending on device) to navigate your library; non-touch screens come with keys or keyboards for device navigation.

Of the non-touch eInk devices, the biggies would be the Kindle 3 and the PocketBook 360. The Kindle 3 has a built in physical keyboard that is used for device navigation; the PocketBook 360 has a direction pad and 3 dedicated buttons, all of which can pull double duty via short-press and long-press and which are customizable in terms of which key does what.

Of the touch eInk devices, the biggies would be the Nook Simple Touch and the Kobo Touch. The Nook Simple Touch has two page turn buttons (right and left side); the Kobo Touch has no buttons whatsoever. (Well, except a power button, I suppose. Those don't count.)

Of the hybrid eInk devices, the Sony PRS line has both touch screen navigation and dedicated buttons across the bottom, which can be customized if you load the PRS+ environment to the device. This is the device style that I personally prefer -- touch for easy library navigation and buttons for options menus and page turns.

NOTE: Since the Sony PRS touch screens are infrared, they can be used with a fine-tip stylus and they can be placed in a water-proof pouch (and then navigated via the button interface). I'm not sure if this is possible with the Nook Simple Touch or Kobo Touch models.

Of the LCD devices, you get touch, period. And it's probably going to be capacitive touch, which means the wide rounded-tip styluses.

2.  Library Management
So now that you've had a moment to ogle the pretty readers, it's time to talk about how you plan to load books and navigate to them. There are a lot of different ways to approach library management, and this is one area where the devices are very different but not always clearly articulated.

Do you like to buy one book, read it, archive it forever, and then go on to the next one? If so, then just about any reader will work for you, and probably your biggest priority will be buying one that integrates easily with your store of choice and maybe even has WiFi or 3G support.

Do you own hundreds or thousands of books and the appeal of an eReader is being able to carry around your entire library with you at all times? Do you care intensely about tweaking the covers and shelf tags until they're perfect and being able to organize books by series or genre or any number of other criteria? If so, then my advice to you is to go straight to the Sony PRS models (not the PRS-350, though, because it doesn't have an expandable SD slot) or the PocketBook models.

Why do I say that? Well, the Nook readers and the Kobo readers and -- to the best of my knowledge -- the Kindle readers all basically dump your entire library into a big old bucket. Some of those readers, most notably the Nook, do support shelving books on the device itself, but the process is slow and tedious and can't be backed up and you will lose all your tagging during a firmware update. I. Have. Done. This.

The Sony PRS readers, in contrast, allow Calibre (which you should totally use to store your 1,000 book library) to send metadata to the device with the books, and this metadata is organized into "Sony Collections". Currently I send several types of metadata with each book to my Sony device: whether or not I own the audio book, whether or not I've reviewed the book yet, where I bought the book (or if it was sent for free in exchange for review), the genre of the book, and the series and series number of the book.

This means that I can go into my Collections view and see a list that looks like this:


Clicking on "fiction (adult literature)" will show me all the books in that category. (I have a whole bunch of these that I named myself because I'm OCD about library management and "fiction (adult literature)" needed to group closely with "fiction (children literature)" and NOT be split by "non-fiction (arts and crafts)".) Clicking on "audio (yes) (Audiobook)" will show me all the books in that category -- some of which are also included in the "fiction (adult literature)" category. This is a very powerful way to use and access a large library, and it's something that -- as far as I know -- is unique to the Sony readers.

Now, I also mentioned PocketBook above, and that's because PocketBook models support folder browsing (as does Sony if you've loaded the PRS+ environment). Folder browsing can get you the same thing that Sony Collections gets you if you don't have a lot of nested folders. Folder browsing worked for me when I only organized books by genre, but once I started adding extra layers like "reviewed?" and "audio book?" then it became cumbersome.

Obviously I'm in favor of Sony readers because of the Collections capability. Will you need collections? Possibly not. My husband does fine without collections, partly because he has a very small library of eBooks so far, and partly because he only loads what he knows he wants to read soon to the device. I'm the sort of person who feels like she has to have her entire library with her at all times because god forbid I not be instantly gratified the second I want to read The Picture of Dorian Gray on a whim. But it's worth pointing out that the Sony line-up makes you pay more for this privilege.

3.  Other Stuff To Think About
OK, so now we've talked about library management and device form factor, here are some miscellaneous things to keep in mind. None of these will (probably) be deal-breakers, but they're things you want to think about moving forward so as to not get taken by surprise.

3.1  Fonts
You might want to check out what kind of fonts come with your proposed eReader. Most readers will come with a serif font and a sans serif font, but they may not be good versions of either. Some readers will let you load new fonts -- the PocketBook models do this, and the Sony PRS models do after you've loaded PRS+ to the environment. (Before that, you're stuck with a whopping ONE font and Sony expects you to like it. *eyeroll*)

3.2  Key Mapping
If your device has keys, you might want to check out the key mapping options available to you -- i.e., how customizable is the device? I'm starting to sound like a broken record, but the PocketBook 360 lets you do this, as does the Sony PRS models after you've loaded PRS+ to the environment. One nice thing that you can do with the Sony models is map "take a screenshot" to a key -- I use this a lot when I want to remember a page or quote from it later. (Sony supports good highlighting and note-taking and export of same, but I just kind of like screenshots for some weird reason.)

3.3  Book Formats
There are about a billion ebook formats, but unless you've been hoarding old Microsoft LIT files and the like, you will really only care about three: mobi, epub, and pdf. So let's talk about those for a second.

The mobi format is the format that the Amazon books come in (for the most part). A rule of thumb is that no readers can read these books except the Amazon readers. (PocketBooks can, but only if they are DRM free. We'll get to that in the Storefront section below.) The mobi format is slightly less sophisticated than the epub format in terms of what can technically be done with them, but for 99% of books, this will not matter. The important thing for you is that mobi converts (via Calibre) cleanly to epub with pretty much no loss or clean-up needed.

The epub format is the format that everyone else's books come in (for the most part). A good rule of thumb is that all readers can read these books except Amazon readers. The epub format is slightly better than the mobi format for reasons that will be invisible to most readers who aren't tech heads. The important thing for you is that epub converts (via Calibre) cleanly to mobi with pretty much no loss or clean-up needed.

The pdf format is the format still used for books that have very specific layout needs (columns, images in relation to text, and so forth). As a general rule of thumb, you really want to avoid reading pdf on your eReader, but if you simply must, the Sony PRS-950 is your best bet (large screen and great zooming options). The Nook and Kobo try to reflow the pdf and the result is pretty dreadful, in my opinion. The important thing for you is that pdf converts terribly -- very messy and with lots of clean-up needed. Anyone who tells you otherwise is either flat-out wrong or thinking of a special type of pdf file that most pdfs aren't.

3.4  Battery Life
The rule of thumb here is that you can get maybe 8 dedicated hours out of an LCD device. The eInk readers last a lot longer, but not as long as you'd think. The Nook Classic, for instance, will tell you it has a week of battery life, but it really has about 16 hours, which is about two days on a long car trip. The trick here is that a "week" of reading is measured in only about 2 hours a day. So while you may hear "week" and think that's more than enough for me! just understand that doesn't take into account what your actual use may be on, say, a long plane trip or something. Overall, though, battery is pretty unimportant to most users -- buy a wall charger or a car charger and you'll never have to think about it.

4.  Store Integration
Last thing, and this is a bit of a biggie: where are you going to buy your books from? It's potentially a major question or possibly not a big deal at all to you -- but whichever way you swing will depend on a few factors: namely, delivery and DRM. But let's cover a couple of general rules.
  1. You do not have to buy eBooks from the store associated with your reader. 
  2. You can -- theoretically -- match any reader with any store. But some stores have more management overhead than others.
4.1  Delivery
Delivery is something that a lot of stores offer to sweeten your link with them through the device. Amazon Kindle books can be bought directly from the Amazon Kindle reader and delivered to your device over the WiFi or 3G; this is true for the four major stores and their readers -- Nook, Kobo, and Sony PRS-950.

Sounds convenient, right? Well, it can be if you're just wanting to buy, read, and archive. Lots of people do that and it works great. But if you want to buy, tweak the cover to be just right, tweak the metadata and tagging, read, and retain on your device forever, the direct delivery is going to be useless to you because you will have to download the book to your computer, tweak it in Calibre, and side-load it to your device by plugging to your computer. So whether delivery is a useful feature will depend on you.

4.2  Digital Rights Management
DRM essentially means that the book is locked down and you have to have a key to open and read the book. Most books come from a bookstore with DRM in place, but not all. Not all eReaders can read the same DRM formats -- i.e., not all eReaders carry the same key types. Here's a quick chart:
  • Amazon: Books have Amazon DRM applied. Kindle can read Amazon DRM only. 
  • B&N: Books have B&N DRM applied. Nook can read B&N DRM and Adobe DRM. 
  • Kobo: Books have Adobe DRM applied. Kobo can read Adobe DRM only. 
  • Sony: Books have Adobe DRM applied. Sony can read Adobe DRM only.
Now, didn't I just say that in theory any book can be read on any device? That's because -- in theory -- removing DRM is fairly easy. If you're interested in the theory of DRM, googling "Apprentice Alf" or "I love cabbages" would be instructive. Do keep in mind that DRM-removal regulations vary from place to place and you'd be advised to look into those details in advance.

Then, also, there are a lot of independent stores -- like Baen and Smashwords -- that provide DRM-free books that you can buy and support. 

But let's say you won't want to remove DRM but you still want a specific DRM-wrapped book. So where should you buy from in that case? Well, if you don't want to remove DRM, you have two choices: You can go with the Amazon store if you want an Amazon reader or you could go with the Kobo store for the B&N/Sony/Kobo readers.

Why the Kobo store? The Adobe DRM they carry can be read on the B&N, Kobo, and Sony readers. The B&N store, in contrast, can only be reader on B&N readers. The Sony store also carried the Adobe DRM, but the Sony store is (currently) quite awful and all right-thinking people hate it. OK, that's an exaggeration, but I don't like it myself, plus I don't like that you need the Sony Reader software to download the books you buy.

So now let's break down the stores:

4.3  Amazon
Most eBooks are priced the same regardless of store because of Agency Pricing, but Amazon seems to be able to coax a sale out once and awhile. I definitely recommend using Amazon to store your Wishlist and using eReaderIQ to send you alerts when the price comes down: generally, when the price goes down at Amazon, it goes down at all the stores. An odd quirk of the Amazon store is that it doesn't download your books to all your registered Kindle devices (computer, eReader, phone, etc.) but rather only to the one you select. Note that Amazon has page syncing and note syncing across devices.

4.4  B&N
B&N probably has the best online library management -- you can sort your purchased books by author or title, and you can also archive things as needed. B&N also lets you download books to your computer with the press of a button, which is nice for backing up data. Once a book has been purchased from B&N, it's available for download on any registered Nook device (computer, eReader, phone, etc.). Note that B&N claims to have page syncing (but it doesn't work) and no note syncing across devices.

4.5  Kobo
Kobo's online library management leaves a lot to be desired in terms of sorting functions, but it's basically a poor man's B&N and it's worth noting that the Kobo team seems to be very open to internet forums and consumer suggestion, which bodes well for future growth. They also offer coupons from time to time, although it's worth remembering that coupons don't work with Agency Priced books. Kobo lets you download books as ascm files which are opened in the Adobe Digital Editions program where the "real" download takes place. Once a book has been purchased from Kobo, it's available for download on any registered Kobo device (computer, eReader, phone, etc.). I'm fairly certain that Kobo does not support note syncing.

4.6  Sony
Sony's store can only be accessed through their Sony Reader software. For that reason, I've not really used the store much at all. Sorry about that.

5.  Information Overload!!
Please don't be scared by any of the above -- buying an eReader should not be a scary experience for you at all. It should be fun! There's something to remember here: First, pretty much all the eReaders on the market are very nice eReaders and while your first purchase may not be "perfect" for your needs, it will probably do very nicely. Second, you pretty much can't screw up too badly -- if you buy the "wrong" eReader, you can resell it for a fair chunk of your investment online. 

So what you really want to know is: what eReader should I buy? 

If you want an LCD device for color and backlit reading, I recommend the Nook Color. It's ~$250, and you can slap an SD card in, run CM7 off of it, and then you have an Android tablet that works very nicely. From there, you can load any store -- Amazon, B&N, Kobo, Sony -- off the Google Market and you've basically got 4 readers in one. If you do get into using Calibre, you can also use the Library in the Cloud function and the Aldiko app supports Adobe DRM.

If you want an eInk device and don't intend to ever have more than ~50 books on it at a time, I recommend the Kobo Touch for ~$130 at Best Buy. It's not the most powerful reader on the market, but it's a good price for a "starter" reader, the books you buy at the Kobo store will be delivered to the device, and you'll be able to switch device manufacturers later to Sony or B&N (if you want) without having to worry about DRM issues.

If you want an eInk device and do intend to stock it up with hundreds or thousands of books, I recommend the Sony PRS-950 but it's worth noting that it's about $400 from Amazon (you can find it as low as $200 at some Best Buys) and the model has been discontinued. I *think* the Sony PRS-T1 will be the same functionality but with a 6" screen and a ~$150 price tag, but since those models won't be released for another month or so, nobody actually knows for sure one way or another.So you might wait and see on those.

But! This is all just my opinion. What you really want to do, before making any decision, is get a second one from the good folks at Mobile Reads. They even have a forum just for this question: Which Device Should I Buy?

And -- as always -- you are welcome to email me with any questions you might have! (Did I mention I like talking about eReaders?)