<?php
// 過去との互換性のための処理
if(!function_exists('imagepalettetotruecolor'))
{
function imagepalettetotruecolor(&$src)
{
if(imageistruecolor($src))
{
return(true);
}
$dst = imagecreatetruecolor(imagesx($src), imagesy($src));
imagecopy($dst, $src, 0, 0, 0, 0, imagesx($src), imagesy($src));
imagedestroy($src);
$src = $dst;
return(true);
}
}
// ヘルパークロージャ
$typeof = function() use($im)
{
echo 'typeof($im) = ' . (imageistruecolor($im) ? 'true color' : 'palette'), PHP_EOL;
};
// パレット形式の画像を作ります
$im = imagecreate(100, 100);
$typeof();
// true color に変換します
imagepalettetotruecolor($im);
$typeof();
// メモリを解放します
imagedestroy($im);
?>
typeof($im) = palette
typeof($im) = true color