欢迎访问服务器技术网-www.fuwuqijishu.com

PHP image_type_to_extension – 获取图片后缀

PHP fuwuqijishu 2年前 (2022-09-04) 96次浏览 0个评论 扫描二维码

PHP 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);
?>

执行以上文件会在当期目录下生成一个 test.png 的图片。

PHP 图像处理

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2120.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900