imagetypes
imagetypes
(PHP 4 >= 4.0.2, PHP 5, PHP 7)
imagetypes - 返回此PHP构建支持的图像类型
描述
int imagetypes ( void )
返回当前PHP安装支持的图像类型。
返回值
返回与链接到PHP的GD版本支持的图像格式相对应的位域。 以下位返回,IMG_BMP | IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP | IMG_XPM |IMG_WEBP。
例子
Example#1检查PNG支持
<?php
if (imagetypes() & IMG_PNG) {
echo "PNG Support is enabled";
}
?>
更新日志
版 | 描述 |
---|---|
7.2.0 | 已添加IMG_BMP。 |
5.6.25, 7.0.10 | 已添加IMG_WEBP。 |
扩展内容
- gd_info() - 检索有关当前安装的GD库的信息
← imagettftext
imagewbmp →