php-8.0.30-src/ext/standard/tests/image/getimagesize_xbm.phpt

26 lines
400 B
PHP

--TEST--
GetImageSize() for xbm format
--FILE--
<?php
echo "*** Testing getimagesize() : xbm format ***\n";
var_dump(getimagesize(__DIR__ . "/75x50.xbm", $arr));
var_dump($arr);
?>
--EXPECT--
*** Testing getimagesize() : xbm format ***
array(5) {
[0]=>
int(75)
[1]=>
int(50)
[2]=>
int(16)
[3]=>
string(22) "width="75" height="50""
["mime"]=>
string(9) "image/xbm"
}
array(0) {
}