gd_info
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
gd_info — Retrieve information about the currently installed GD library
Description
Gets information about the version and capabilities of the installed GD library.
Return Values
Returns an associative array.
Attribute | Meaning |
---|---|
GD Version | string value describing the installed libgd version. |
FreeType Support | boolean value. TRUE
if FreeType Support is installed. |
FreeType Linkage | string value describing the way in which
FreeType was linked. Expected values are: 'with freetype',
'with TTF library', and 'with unknown library'. This element will
only be defined if FreeType Support evaluated to
TRUE . |
T1Lib Support | boolean value. TRUE
if T1Lib support is included. |
GIF Read Support | boolean value. TRUE
if support for reading GIF
images is included. |
GIF Create Support | boolean value. TRUE
if support for creating GIF
images is included. |
JPEG Support | boolean value. TRUE
if JPEG support is included. |
PNG Support | boolean value. TRUE
if PNG support is included. |
WBMP Support | boolean value. TRUE
if WBMP support is included. |
XBM Support | boolean value. TRUE
if XBM support is included. |
WebP Support | boolean value. TRUE
if WebP support is included. |
Note:
Previous to PHP 5.3.0, the JPEG Support attribute was named JPG Support.
Changelog
Version | Description |
---|---|
5.6.12 | WebP Support added. |
5.3.0 | JPG Support attribute renamed to JPEG Support. |
Examples
Example #1 Using gd_info()
<?php
var_dump(gd_info());
?>
The above example will output something similar to:
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) }
See Also
- imagepng() - Output a PNG image to either the browser or a file
- imagejpeg() - Output image to browser or file
- imagegif() - Output image to browser or file
- imagewbmp() - Output image to browser or file
- imagewebp() - Output a WebP image to browser or file
- imagetypes() - Return the image types supported by this PHP build
Vertaling niet beschikbaar
De PHP-handleiding is nog niet in het Nederlands vertaald, dus het scherm is in het Engels. Als u wilt, kunt u het ook in het Frans of in het Duits raadplegen.
Als je de moed voelt, kun je je vertaling aanbieden ;-)
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/01/2003 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/php-rf-gd-info.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.