I am currently resampling uploaded images to a static width and height. I'd like to be able to create a new copy of the image at the greatest quality below a certain file-size threshold. Currently, I'm using a very naive method - something like this:
$size = NULL;
$quality = 100;
while ($size === NULL || $size > MAX_SIZE) {
// write the image to disk using $quality
clearstatcache(TRUE, $image);
$size = filesize($image);
$quality -= 10;
}
Is there a better method for determining what quality I should use?
mandb(or their averages between several images) as your general expression to get a very good approximation. – Alix Axel Jul 19 '12 at 23:27