imagetypes

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

imagetypes返回当前 PHP 版本所支持的图像类型

说明

imagetypes ( void ) : int

本函数以比特字段方式返回与当前 PHP 版本关联的 GD 库所支持的图像格式。将返回以下结果,IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP| IMG_XPM。 例如要检查是否支持 PNG,这样做:

Example #1 imagetypes() 例子

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