Google App Engine gets angry about image files over 1M. http://code.google.com/appengine/docs/python/images/overview.html#Quotas_and_Limits

Given an arbitrary user-provided image, and the ability to run C code to pre-process it, is there any clever way to get down to 1M with maximum quality?

The brute-force way is to search for the compression level and resolution that result in a <1M file, by trying a series of JPEG quality settings and a series of scale factors.

Other than brute-force search, any ideas on a clever way to pick the best JPEG quality and scale factor to achieve 1M file size?

What might be some good heuristics, maybe assumptions about the percent compression achieved at various JPEG quality levels?

Brute force has the virtue of simplicity and likely it'll be fast enough anyway, but just curious.

link|improve this question

56% accept rate
To clarify, trying to ask here about JPEG-specific cleverness, rather than generic search techniques such as binary search. Those are still "brute-force" in the sense I meant. – Havoc P Nov 1 '10 at 20:23
feedback

4 Answers

up vote 2 down vote accepted

the standard binary search assumes random data, which is certainly not the case here. A more efficient approach is to do linear interpolation. This function Size of Compressed Image (Size of uncompressed image) , like any sensible function, is linear given a small enough interval. So, on each interation, assume a linear response. This will come up with the answer DRAMATICALLY faster than the binary search. E.G. compressed at 50% quality, .75 M, so use (1/.75) * 50% ~ 62%. Lets say that results in an image of 1.5 M Now we have two points. (X = 50%, Y = .75 M) and (X=62%, Y= 1.5 M). The slope is (1.5-.75)/(62-50)=.75/12 So our second guess would be .25M X (12/.75)=4%, 50%+4%=54% Take the closest guesses so far, and repeat the process until the result makes you happy. You could use higher order interpolation, such as Newtons method, which would probably converge even faster.

link|improve this answer
feedback

Simple alghorythm — create jpeg with 100 quality, if it is less than 1M, use it, if more, create with 50, if now less than 1M, than try 75, else try 25…

link|improve this answer
right, I was including binary search under brute-force search, I guess – Havoc P Nov 1 '10 at 19:08
This is called the binary search algorithm. en.wikipedia.org/wiki/Binary_search_algorithm – Malfist Nov 1 '10 at 19:09
feedback

This article from Jeff Atwood himself seems to imply that there is a way to "standardize on a JPEG compression factor of 15": A Comparison of JPEG Compression Levels and Recompression (I have not completely read the article, so I could have misunderstood the message when I gazed over it).

If you can set the compression factor, you can set the desired size.

The table on the Wikipedia article looks interesting. Qualtiy = 50 -> Compression factor = 15:1 (proven by empirical measurement on wikipedia :-) ... I am procrastinating, I should be doing something else right now...)

link|improve this answer
This is a good approach to get the approximate starting compression level and then you can continue using the Binary search algorithm mentioned in the other answers from here. Pick appropriate max dimensions as well. – Blair McMillan Nov 1 '10 at 19:35
4  
The compression factor given to a JPEG engine does not specify the resulting size. Two images starting with the same dimensions can compress down to completely different file sizes at the same compression level. The table in Wikipedia is only valid for that sample image and no others. – Mark Ransom Nov 1 '10 at 20:18
feedback

Dear Google AppEngine team:

Please eliminate the 1MB cap on image files. There are already quotas and pricing associated with storage, processing, bandwidth, etc to maintain developer incentives to keep file sizes down.

Thank you for everything.
Sincerely,

The developer community

link|improve this answer
an ideal solution indeed ;-) – Havoc P Nov 2 '10 at 19:55
feedback

Your Answer

 
or
required, but never shown

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