summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagetypes_bmp.phpt
blob: 8a92dda28f0e928eeb20490e0dbf1ffbdb821e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
imagetypes() - BMP support
--SKIPIF--
<?php
if (!extension_loaded('gd')) die('skip ext/gd required');
?>
--FILE--
<?php
var_dump((imagetypes() & IMG_BMP) == function_exists('imagebmp'));
?>
--EXPECT--
bool(true)