imagetypes

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

imagetypes返回此 PHP 版本支持的图像类型

描述

imagetypes(): int

返回当前 PHP 安装支持的图像类型。

参数

此函数没有参数。

返回值

返回一个位域,对应于链接到 PHP 的 GD 版本支持的图像格式。返回以下位,IMG_AVIF | IMG_BMP | IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP | IMG_XPM | IMG_WEBP

变更日志

版本 描述
8.1.0 IMG_AVIF 添加。
7.2.0 IMG_BMP 添加。
7.0.10 IMG_WEBP 添加。

示例

示例 #1 检查 PNG 支持

<?php
if (imagetypes() & IMG_PNG) {
echo
"PNG Support is enabled";
}
?>

参见

  • gd_info() - 检索有关当前安装的 GD 库的信息
添加注释

用户贡献的注释 1 个注释

ThunderCrew
17 年前
我并不聪明,但这似乎是最简单的代码,而且它有效。
它位于此目录的最顶部。

<?php
var_dump
(gd_info());
?>

返回图像信息和其他信息。

array(11) { ["GD Version"]=> string(27) "bundled (2.0.28 compatible)" ["FreeType Support"]=> bool(true) ["FreeType Linkage"]=> string(13) "with freetype" ["T1Lib Support"]=> bool(false) ["GIF Read Support"]=> bool(true) ["GIF Create Support"]=> bool(true) ["JPG Support"]=> bool(true) ["PNG Support"]=> bool(true) ["WBMP Support"]=> bool(true) ["XBM Support"]=> bool(true) ["JIS-mapped Japanese Font Support"]=> bool(false) }
To Top