# Разобрался.
<?php
$src=ImageCreateFromPng($image);
$dst=ImageCreateTrueColor($w,$h);
$colorTransparent = imagecolortransparent($src);
imagepalettecopy($src, $dst);
imagefill($dst, 0, 0, $colorTransparent);
imagecolortransparent($dst, $colorTransparent);
imagetruecolortopalette($dst, true, 48);
ImageCopyResampled($dst,$src,0,0,0,0,$w,$h,$width,$height);
header('Content-type: image/png');
ImagePng($dst);
ImageDestroy($src);
ImageDestroy($dst);
?>