image_type_to_extension — 指定された画像タイプに従って、対応するサフィックス名を返します。
string image_type_to_extension ( int $imagetype [, bool $include_dot = TRUE ] )
指定された定数 IMAGETYPE_XXX に基づいてサフィックス名を返します。
<?php// 画像インスタンスの作成 $im = imagecreatetruecolor(100, 100);// 画像を PNG 形式で保存 imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PNG));imagedestroy($im);?>
上記のファイルを実行すると、現在のディレクトリに test.png イメージが生成されます。