Php/docs/function.gd-info
来自菜鸟教程
gd_info
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
gd_info — 取得当前安装的 GD 库的信息
说明
gd_info ( ) : array
返回一个关联数组描述了安装的 GD 库的版本和性能。
属性 | 含义 |
---|---|
GD Version | string 值描述了安装的 libgd 的版本。
|
Freetype Support | boolean 值。如果安装了 Freetype 支持则为 true 。
|
Freetype Linkage | string 值描述了 Freetype 连接的方法。取值可能为:'with freetype',
'with TTF library' 和 'with unknown library'。本单元仅在
|
T1Lib Support | boolean 值。如果包含有 T1Lib 支持则为 true 。
|
GIF Read Support | boolean 值。如果包含有读取
|
GIF Create Support | boolean 值。如果包含有创建
|
JPG Support | boolean 值。如果包含有 JPG 支持则为 true 。
|
PNG Support | boolean 值。如果包含有 PNG 支持则为 true 。
|
WBMP Support | boolean 值。如果包含有 WBMP 支持则为 true 。
|
XBM Support | boolean 值。如果包含有 XBM 支持则为 true 。
|
Example #1 使用 gd_info()
<?phpvar_dump(gd_info());?>
典型输出为:
array(9) { ["GD Version"]=> string(24) "bundled (2.0 compatible)" ["FreeType Support"]=> bool(false) ["T1Lib Support"]=> bool(false) ["GIF Read Support"]=> bool(true) ["GIF Create Support"]=> bool(false) ["JPG Support"]=> bool(false) ["PNG Support"]=> bool(true) ["WBMP Support"]=> bool(true) ["XBM Support"]=> bool(false) }
参见 imagepng(),imagejpeg(),imagegif(),imagewbmp() 和 imagetypes()。