Jeśli usunę imagetruecolortopalette jest ok, ale niestety będę potrzebował później zredukować paletę do 256 kolorów.
[PHP][/PHP]
$image = imagecreatetruecolor(256, 256); $background = imagecolorallocate($image, 255, 255, 255); imagecolortransparent($image, $background); imagefilledrectangle($image, 0, 0, 255, 255, $background); imagetruecolortopalette($image, TRUE, 256); imagepng($image, NULL, 9);