PHP 8.3.4 Released!

imagetypes

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

imagetypesこの PHP がサポートしている画像形式を返す

説明

imagetypes(): int

現在使用している PHP がサポートする画像形式を返します。

パラメータ

この関数にはパラメータはありません。

戻り値

画像形式に対応するビットフィールドで、 PHP に組み込まれている GD がサポートする画像形式を返します。 返されるビットは次のとおりです。 IMG_AVIF | IMG_BMP | IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP | IMG_XPM | IMG_WEBP

変更履歴

バージョン 説明
8.1.0 IMG_AVIF が追加されました。
7.2.0 IMG_BMP が追加されました。
7.0.10 IMG_WEBP が追加されました。

例1 PNG をサポートしているかどうかの確認

<?php
if (imagetypes() & IMG_PNG) {
echo
"PNG をサポートしています";
}
?>

参考

  • gd_info() - 現在インストールされているGDライブラリに関する情報を取得する
add a note

User Contributed Notes 1 note

up
-4
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