PHP gd_info – 取得當前安裝的 GD 庫的信息
PHP gd_info - 取得當前安裝的 GD 庫的信息
gd_info — 取得當前安裝的 GD 庫的信息。
語法
array gd_info ( void )
返回一個關聯數組描述了安裝的 GD 庫的版本和性能。
實例
<?php var_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) }
返回結果說明:
屬性 | 含義 |
---|---|
GD Version | string 值。描述了安裝的 libgd 的版本。 |
Freetype Support | boolean 值。如果安裝了 Freetype 支持則為 TRUE。 |
Freetype Linkage | string 值。描述了 Freetype 連接的方法。取值可能為:'with freetype', 'with TTF library' 和 'with unknown library'。本單元僅在 Freetype Support 的值為 TRUE 時有定義。 |
T1Lib Support | boolean 值。如果包含有 T1Lib 支持則為 TRUE。 |
GIF Read Support | boolean 值。如果包含有讀取 GIF 圖像的支持則為 TRUE。 |
GIF Create Support | boolean 值。如果包含有創建 GIF 圖像的支持則為 TRUE。 |
JPG Support | boolean 值。如果包含有 JPG 支持則為 TRUE。 |
PNG Support | boolean 值。如果包含有 PNG 支持則為 TRUE。 |
WBMP Support | boolean 值。如果包含有 WBMP 支持則為 TRUE。 |
XBM Support | boolean 值。如果包含有 XBM 支持則為 TRUE。 |
相關文章
- imagepng() 以 PNG 格式將圖像輸出到瀏覽器或文件。
- imagejpeg() 以 JPEG 格式將圖像輸出到瀏覽器或文件。
- imagegif() 以 GIF 格式將圖像輸出到瀏覽器或文件。
- imagewbmp() 以 WBMP 格式將圖像輸出到瀏覽器或文件。
- imagetypes() 返回當前 PHP 版本所支持的圖像類型。
相關文章
- PHP EOF(heredoc) 使用說明
- PHP 數組排序
- PHP While 循環
- PHP 多維數組
- PHP 錯誤處理
- PHP 過濾器
- PHP array_fill() 函數
- PHP array_fill_keys() 函數
- PHP array_map() 函數
- PHP array_rand() 函數
- PHP array_reverse() 函數
- PHP array_udiff() 函數
- PHP array_uintersect_assoc() 函數
- PHP natsort() 函數
- PHP reset() 函數
- PHP 5 Array 函數
- PHP 5 Calendar 函數
- PHP cURL 函數
- PHP 5 Date/Time 函數
- PHP 5 Math 函數