vote up -1 vote down star
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

flag

58% accept rate
I wanted to give the winner some 75 reputation, but I thinks I have to wait for the bounty option to appear.. – luca Nov 7 at 9:29
8  
Looks more like that you want people to code for you than a contest to be fair. – Sbm007 Nov 7 at 9:30
I won by reducing the size to 1px by 1px. Only 1byte! – thephpdeveloper Nov 7 at 9:39
@Maurius, tried that. Assuming that the pixel has a solid color (most has) and no transparency, the best I got (with Paint.NET) was a tga-file of 22 bytes. What you have done is increased the image header to 86% of the data. Unacceptable! ;) – Simon Svensson Nov 7 at 9:45
You should change the wording to grayscale, unless you are willing to accept the degraded results of a true b/w image. You could convert it to text via OCR and do gz compression. – steven Nov 7 at 10:09
show 4 more comments

1 Answer

vote up 1 vote down

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.

link|flag
CCITT Fax4 for the win! – Nils Pipenbrinck Nov 7 at 10:52
not bad but a bit too B/W =) I post my version so you can see – luca Nov 7 at 10:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.