diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/tests/image/getimagesize.phpt | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/ext/standard/tests/image/getimagesize.phpt b/ext/standard/tests/image/getimagesize.phpt index 5c01d795f2..46003cffac 100644 --- a/ext/standard/tests/image/getimagesize.phpt +++ b/ext/standard/tests/image/getimagesize.phpt @@ -23,7 +23,7 @@ GetImageSize() var_dump($result); ?> --EXPECT-- -array(10) { +array(11) { ["test1pix.bmp"]=> array(6) { [0]=> @@ -39,6 +39,23 @@ array(10) { ["mime"]=> string(9) "image/bmp" } + ["test1pix.jp2"]=> + array(7) { + [0]=> + int(1) + [1]=> + int(1) + [2]=> + int(10) + [3]=> + string(20) "width="1" height="1"" + ["bits"]=> + int(8) + ["channels"]=> + int(3) + ["mime"]=> + string(9) "image/jp2" + } ["test1pix.jpc"]=> array(7) { [0]=> |