diff options
author | Marcus Boerger <helly@php.net> | 2003-01-16 19:46:12 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-01-16 19:46:12 +0000 |
commit | 1dabcd4dadb4c502bf9cd010db07e94fa8e076e1 (patch) | |
tree | 7a5d1a84b1d8bca7700303dfe7301739a1196d9e /ext/standard | |
parent | 8958762de6eb9141b6b8073805c04c897dbe7a77 (diff) | |
download | php-git-1dabcd4dadb4c502bf9cd010db07e94fa8e076e1.tar.gz |
- JPEG 2000 support
Diffstat (limited to 'ext/standard')
-rw-r--r-- | ext/standard/tests/image/getimagesize.phpt | 6 | ||||
-rw-r--r-- | ext/standard/tests/image/image_type_to_mime_type.phpt | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ext/standard/tests/image/getimagesize.phpt b/ext/standard/tests/image/getimagesize.phpt index 9d28acf7ac..5c01d795f2 100644 --- a/ext/standard/tests/image/getimagesize.phpt +++ b/ext/standard/tests/image/getimagesize.phpt @@ -40,7 +40,7 @@ array(10) { string(9) "image/bmp" } ["test1pix.jpc"]=> - array(6) { + array(7) { [0]=> int(1) [1]=> @@ -50,9 +50,11 @@ array(10) { [3]=> string(20) "width="1" height="1"" ["bits"]=> + int(8) + ["channels"]=> int(3) ["mime"]=> - string(10) "image/jpeg" + string(24) "application/octet-stream" } ["test1pix.jpg"]=> array(7) { diff --git a/ext/standard/tests/image/image_type_to_mime_type.phpt b/ext/standard/tests/image/image_type_to_mime_type.phpt index 0f2eed1e32..da882aae8d 100644 --- a/ext/standard/tests/image/image_type_to_mime_type.phpt +++ b/ext/standard/tests/image/image_type_to_mime_type.phpt @@ -29,7 +29,7 @@ array(10) { ["test1pix.bmp"]=> string(9) "image/bmp" ["test1pix.jpc"]=> - string(10) "image/jpeg" + string(24) "application/octet-stream" ["test1pix.jpg"]=> string(10) "image/jpeg" ["test2pix.gif"]=> |