|
update : 2015.11.03
php.shukuma.com검색:
|
gd_info(PHP 4 >= 4.3.0, PHP 5, PHP 7) gd_info — Retrieve information about the currently installed GD library 설명
array gd_info
( void
)
Gets information about the version and capabilities of the installed GD library. 반환값Returns an associative array.
예제
Example #1 Using gd_info()
<?php위 예제의 출력 예시:
array(10) {
["GD Version"]=>
string(24) "bundled (2.1.0 compatible)"
["FreeType Support"]=>
bool(false)
["T1Lib 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)
}
변경점
참고
|