«

PHP:gd_info()的用法

时间:2024-3-1 21:44     作者:韩俊     分类: PHP


gd_info

(PHP 4 >= 4.3.0, PHP 5)

gd_info — 取得当前安装的 GD 库的信息

<h3>说明</h3>
 array <strong>gd_info</strong>
  ( void
 )
<p>
 返回一个关联数组描述了安装的 GD 库的版本和性能。
</p>
<p>
  <strong><strong>gd_info()</strong> 返回的数组的单元</strong>
     属性
     含义
     GD Version
     string 值描述了安装的 libgd 的版本。
     Freetype Support
     boolean 值。如果安装了 Freetype 支持则为 <strong><code>TRUE</code></strong>。
     Freetype Linkage
      string 值描述了 Freetype 连接的方法。取值可能为:&#039;with freetype&#039;,
      &#039;with TTF library&#039; 和 &#039;with unknown library&#039;。本单元仅在
      Freetype Support 的值为 <strong><code>TRUE</code></strong> 时有定义。
     T1Lib Support
     boolean 值。如果包含有 T1Lib 支持则为 <strong><code>TRUE</code></strong>。
     GIF Read Support
      boolean 值。如果包含有读取
      GIF 图像的支持则为 <strong><code>TRUE</code></strong>。
     GIF Create Support
      boolean 值。如果包含有创建
      GIF 图像的支持则为 <strong><code>TRUE</code></strong>。
     JPG Support
     boolean 值。如果包含有 JPG 支持则为 <strong><code>TRUE</code></strong>。
     PNG Support
     boolean 值。如果包含有 PNG 支持则为 <strong><code>TRUE</code></strong>。
     WBMP Support
     boolean 值。如果包含有 WBMP 支持则为 <strong><code>TRUE</code></strong>。
     XBM Support
     boolean 值。如果包含有 XBM 支持则为 <strong><code>TRUE</code></strong>。
</p>
<p>
  <p><strong>Example #1 使用 <strong>gd_info()</strong></strong></p>
<?php
var_dump(gd_info());
?>
  <p>
   典型输出为:
  </p>
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)
}
</p>
<p>
 参见 imagepng(),imagejpeg(),imagegif(),imagewbmp()
 和 imagetypes()。
</p>

标签: php php教程

热门推荐