MyBB Community Forums

Full Version: Attachment thumbnail image compression: how to decrease?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi

I am tying to do this too but have:

{
case 1:
if(function_exists("imagegif"))
{
@imagegif($thumbim, $path."/".$filename);
}
else
{
@imagejpeg($thumbim, $path."/".$filename);
}
break;
case 2:
@imagejpeg($thumbim, $path."/".$filename);
break;
case 3:
@imagepng($thumbim, $path."/".$filename);
break;
}

Where's the 3rd parameter to change?

Please help.

Thanks
Change both:
@imagejpeg($thumbim, $path."/".$filename);
to:
@imagejpeg($thumbim, $path."/".$filename, 100);
Pages: 1 2