Home Tutorial Php Phpgd PHP GD get gd information

 
 

PHP GD get gd information
Posted on: November 17, 2009 at 12:00 AM
This example shows how to get gd information Using php gd Library.

<?php

echo '<pre> ';

print_r(gd_info());

echo '</pre> ';

?>

After running the program you will get the following output

 Array
(
    [GD Version] => bundled (2.0.34 compatible)
    [FreeType Support] => 1
    [FreeType Linkage] => with freetype
    [T1Lib Support] => 
    [GIF Read Support] => 1
    [GIF Create Support] => 1
    [JPEG Support] => 1
    [PNG Support] => 1
    [WBMP Support] => 1
    [XPM Support] => 
    [XBM Support] => 1
    [JIS-mapped Japanese Font Support] => 
)

Related Tags for PHP GD get gd information:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.