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 的圖片。