gd_info

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

gd_info检索当前安装的 GD 库的信息

描述

gd_info(): array

获取有关已安装 GD 库的版本和功能的信息。

参数

此函数没有参数。

返回值

返回一个关联数组。

gd_info() 返回的数组元素
属性 含义
GD 版本 string 值,描述已安装的 libgd 版本。
FreeType 支持 bool 值。如果安装了 FreeType 支持,则为 true
FreeType 链接 string 值,描述 FreeType 的链接方式。预期值为:'with freetype'、'with TTF library' 和 'with unknown library'。如果 FreeType Support 评估为 true,则此元素将仅被定义。
GIF 读取支持 bool 值。如果包含对读取 GIF 图像的支持,则为 true
GIF 创建支持 bool 值。如果包含对创建 GIF 图像的支持,则为 true
JPEG 支持 bool 值。如果包含 JPEG 支持,则为 true
PNG 支持 bool 值。如果包含 PNG 支持,则为 true
WBMP 支持 bool 值。如果包含 WBMP 支持,则为 true
XBM 支持 bool 值。如果包含 XBM 支持,则为 true
WebP 支持 bool 值。如果包含 WebP 支持,则为 true
AVIF 支持 bool 值。如果包含 AVIF 支持,则为 true。自 PHP 8.1.0 开始可用。

示例

示例 #1 使用 gd_info()

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

上面的示例将输出类似以下内容

array(10) {
  ["GD Version"]=>
  string(24) "bundled (2.1.0 compatible)"
  ["FreeType Support"]=>
  bool(false)
  ["GIF Read Support"]=>
  bool(true)
  ["GIF Create Support"]=>
  bool(false)
  ["JPEG Support"]=>
  bool(false)
  ["PNG Support"]=>
  bool(true)
  ["WBMP Support"]=>
  bool(true)
  ["XBM Support"]=>
  bool(false)
  ["WebP Support"]=>
  bool(false)
  ["AVIF Support"]=>
  bool(false)
}

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top