views:

116

answers:

1

I put this as a contest, but it's still a question!

Here's the original image: http://dl.dropbox.com/u/1663633/original_scan.jpg

Original size is about 1 megabyte. How would you reduce the size so that the final print on a A4 paper (about letter size I think..) still looks good?

Rules:

  • The process MUST be automatic (to be applied to hundreds of similar images) therefore no manual correction is allowed (like erase black borders in photoshop with the eraser tool)
  • Resolution (200dpi) cannot be lowered any further

Here are a few Ideas

  • reduce number of colors
  • reduce noise (black pixels without any meaning..) and smooth things out..

I managed to achieve 156KB, can you best me? You should explain how you did it of course =)

P.S. I uploaded my image with dropbox but maybe there's a simpler way.. don't know.. you can look at my compressed version here

+1  A: 

You can use ImageMagick to convert it to a G4 tiff:

convert original_scan.jpg -type bilevel -monochrome -compress group4 \
    -negate original_scan.tiff

72k on my machine. Zip that up and it's 66k.

codelogic
CCITT Fax4 for the win!
Nils Pipenbrinck
not bad but a bit too B/W =)I post my version so you can see
luca