Optimizing images for Amazon's Kindle

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
mi
Posts: 123
Joined: 2005-01-25T14:14:43-07:00
Contact:

Optimizing images for Amazon's Kindle

Post by mi »

Hello!

Amazon's Kindle can show pictures. However, storing the full-color ones on it is wasteful, because it only has a black-and-white screen.

What options should I give to convert to get "optimal" JPGs or PNGs: 600x800, with 16 shades of gray -- and otherwise follow these recommendations?

Thank you!
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Optimizing images for Amazon's Kindle

Post by fmw42 »

try something like one of these:

convert image.tif -strip -colorspace gray -resize "600x800>" -depth 8 -colors 16 +dither \
-type palette -quality 75 image.jpg

convert image.tif -strip -colorspace gray -resize "600x800>" -depth 4 \
-type palette image.gif

convert image.tif -strip -colorspace gray -resize "600x800>" -depth 4 \
-type palette image.png


With the jpg, you can control the quality setting to adjust the filesize

see the various options above at:

http://www.imagemagick.org/script/comma ... ptions.php
http://www.imagemagick.org/script/comma ... p#geometry
Post Reply