PHP GD image_type_to_extension() 函数
PHP 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);
运行以上 PHP 范例会在当前目录下生成一个 test.png 的图片