Forum Moderators: coopster
$thumb=imagecreatetruecolor($w1,$h1);
$new=imagecreatefromgif($imagepath);
for($i=0;$i<256;$i++) imagecolorallocate($thumb,$i,$i,$i);
imagecopyresampled($thumb,$new,0,0,0,0,$w1,$h1,$w0,$h0);
imagejpeg($thumb,$thumbpath);
ImageDestroy($new);
ImageDestroy($thumb);