Hello, I've used PHP Thumb and been very happy with it. However, I can't seem to figure out how to specify a quality setting when saving an image?
I tried:
private function _createThumbnail($sourcePath, $destPath, $w, $h, $q)
{
$thumb = CB_Image_Thumbnail::create($sourcePath);
$thumb->resize($w, $h);
$thumb->save($destPath, $q);
}