@doctorsexy
great =)
@Hiks
default quality settings for jpegs is 75 in GD.
search for
Code:
$success = imagejpeg($sprite, DIR . ($img_filepath[0] != DIRECTORY_SEPARATOR ? DIRECTORY_SEPARATOR : '') . $img_filepath);
replace with
Code:
$success = imagejpeg($sprite, DIR . ($img_filepath[0] != DIRECTORY_SEPARATOR ? DIRECTORY_SEPARATOR : '') . $img_filepath , 90);
If it still doesn't look good change 90->100, but your files might get big then.