导航首页 »  技术教程 »  PHP:imagetypes()的用法_GD库图像处理函数
PHP:imagetypes()的用法_GD库图像处理函数 1117 2023-12-15   

imagetypes

(PHP 4 >= 4.0.2, PHP 5)

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

说明

int imagetypes ( void )

本函数以比特字段方式返回与当前 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";
}
?>



文章评论 (0条)
发表评论
暂无评论,快来抢沙发吧~