mirror of
https://github.com/php/php-src.git
synced 2025-01-23 20:23:31 +08:00
40 lines
754 B
PHP
40 lines
754 B
PHP
--TEST--
|
|
GetImageSize() for wbmp format
|
|
--SKIPIF--
|
|
<?php
|
|
if (!defined("IMAGETYPE_WBMP")) {
|
|
die("skip wbmp file format is not available");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : proto array getimagesize(string imagefile [, array info])
|
|
* Description: Get the size of an image as 4-element array
|
|
* Source code: ext/standard/image.c
|
|
* Alias to functions:
|
|
*/
|
|
|
|
echo "*** Testing getimagesize() : wbmp format ***\n";
|
|
var_dump(getimagesize(dirname(__FILE__) . "/75x50.wbmp", $arr));
|
|
var_dump($arr);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
*** Testing getimagesize() : wbmp format ***
|
|
array(5) {
|
|
[0]=>
|
|
int(75)
|
|
[1]=>
|
|
int(50)
|
|
[2]=>
|
|
int(15)
|
|
[3]=>
|
|
string(22) "width="75" height="50""
|
|
["mime"]=>
|
|
string(18) "image/vnd.wap.wbmp"
|
|
}
|
|
array(0) {
|
|
}
|
|
===DONE===
|