Quote:
Today at 06:49 AM afterlab said this in Post #87
Is there anyway this can be in another format other than .jpg? JPG's quality is absolutely horrible.
|
In the signature.php file, find...
$img = imagecreate($width,$height);
...and change to...
$img = imagecreatetruecolor($width,$height);
...if you have not done so. This improved mine. By default it is set to zero compression with the line...
$komprimierung = 100;