imagetypes

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

imagetypes Gib die von der aktuell verwendeten PHP-Version unterstützten Grafik-Formate zurück

Beschreibung

imagetypes ( ) : int

Gibt die Image-Formate, die von der aktuellen PHP-Installation unterstützt werden, zurück.

Rückgabewerte

Gibt ein Bitfeld zurück, das den von der verlinkten GD-Version unterstützten Image-Formaten entspricht. Die folgenden Bits werden zurückgegeben: IMG_BMP | IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP | IMG_XPM | IMG_WEBP.

Beispiele

Beispiel #1 Prüfe PNG-Unterstützung

<?php
if (imagetypes() & IMG_PNG) {
    echo 
"PNG wird unterstützt";
}
?>

Changelog

Version Beschreibung
7.2.0 IMG_BMP wurde hinzugefügt.
7.0.10 IMG_WEBP wurde hinzugefügt.

Siehe auch

  • gd_info() - Liefert Informationen über die aktuell verwendete GD-Bibliothek
add a note add a note

User Contributed Notes 1 note

up
-1
ThunderCrew
16 years ago
Im not a smart man but this seemd to be the simplest code and it worked.
Its at the very top of this directory.

<?php
var_dump
(gd_info());
?>

Returned image info and more.

array(11) { ["GD Version"]=> string(27) "bundled (2.0.28 compatible)" ["FreeType Support"]=> bool(true) ["FreeType Linkage"]=> string(13) "with freetype" ["T1Lib Support"]=> bool(false) ["GIF Read Support"]=> bool(true) ["GIF Create Support"]=> bool(true) ["JPG Support"]=> bool(true) ["PNG Support"]=> bool(true) ["WBMP Support"]=> bool(true) ["XBM Support"]=> bool(true) ["JIS-mapped Japanese Font Support"]=> bool(false) }
To Top