From: SVN Migration Date: Mon, 18 Nov 2002 16:51:03 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create branch 'PHP_4_3'. X-Git-Tag: php-4.3.0RC2~91 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29ec528c42e2752bfa78401207a0aed8c6a7dbf4;p=php This commit was manufactured by cvs2svn to create branch 'PHP_4_3'. --- diff --git a/ext/standard/tests/image/246x247.png b/ext/standard/tests/image/246x247.png new file mode 100644 index 0000000000..648a64e0aa Binary files /dev/null and b/ext/standard/tests/image/246x247.png differ diff --git a/ext/standard/tests/image/384x385.png b/ext/standard/tests/image/384x385.png new file mode 100644 index 0000000000..843ddfaf08 Binary files /dev/null and b/ext/standard/tests/image/384x385.png differ diff --git a/ext/standard/tests/image/getimagesize_246x247.phpt b/ext/standard/tests/image/getimagesize_246x247.phpt new file mode 100644 index 0000000000..e5a0aea779 --- /dev/null +++ b/ext/standard/tests/image/getimagesize_246x247.phpt @@ -0,0 +1,42 @@ +--TEST-- +GetImageSize() with 246x247 pixels +--SKIPIF-- + +--FILE-- + +--EXPECT-- +array(1) { + ["246x247.png"]=> + array(6) { + [0]=> + int(246) + [1]=> + int(247) + [2]=> + int(3) + [3]=> + string(24) "width="246" height="247"" + ["bits"]=> + int(4) + ["mime"]=> + string(9) "image/png" + } +} diff --git a/ext/standard/tests/image/getimagesize_384x385.phpt b/ext/standard/tests/image/getimagesize_384x385.phpt new file mode 100644 index 0000000000..0051df71e0 --- /dev/null +++ b/ext/standard/tests/image/getimagesize_384x385.phpt @@ -0,0 +1,42 @@ +--TEST-- +GetImageSize() with 384x385 pixels +--SKIPIF-- + +--FILE-- + +--EXPECT-- +array(1) { + ["384x385.png"]=> + array(6) { + [0]=> + int(384) + [1]=> + int(385) + [2]=> + int(3) + [3]=> + string(24) "width="384" height="385"" + ["bits"]=> + int(1) + ["mime"]=> + string(9) "image/png" + } +}