Latest web development tutorials

PHP image_type_to_extension – 獲取圖片後綴

PHP image_type_to_extension - 獲取圖片後綴

PHP 圖像處理 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);
?>

執行以上文件會在當期目錄下生成一個test.png 的圖片。

PHP 圖像處理 PHP圖像處理