--TEST--
Bug #36697 (TrueColor transparency with GIF palette output).
--SKIPIF--
<?php
    
if (!extension_loaded('gd')) {
        die(
"skip gd extension not available\n");
    }
?>
--FILE--
<?php
$dest 
dirname(__FILE__) . "/36697.gif";

$im imagecreatetruecolor(19236);
$trans_color imagecolorallocate($im25500);
$color imagecolorallocate($im255255255);
imagecolortransparent($im$trans_color);
imagefilledrectangle($im0,0192,36$trans_color);
$c imagecolorat($im191,35);
imagegif($im$dest);
imagedestroy($im);
$im imagecreatefromgif($dest);
$c imagecolorat($im19135);
$colors imagecolorsforindex($im$c);
echo 
$colors['red'] . ' ' $colors['green'] . ' ' $colors['blue'];
@
unlink($dest);
?>
--EXPECT--
255 0 0