]> granicus.if.org Git - php/commitdiff
This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.
authorSVN Migration <svn@php.net>
Mon, 18 Nov 2002 16:51:03 +0000 (16:51 +0000)
committerSVN Migration <svn@php.net>
Mon, 18 Nov 2002 16:51:03 +0000 (16:51 +0000)
ext/standard/tests/image/246x247.png [new file with mode: 0644]
ext/standard/tests/image/384x385.png [new file with mode: 0644]
ext/standard/tests/image/getimagesize_246x247.phpt [new file with mode: 0644]
ext/standard/tests/image/getimagesize_384x385.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/image/246x247.png b/ext/standard/tests/image/246x247.png
new file mode 100644 (file)
index 0000000..648a64e
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 (file)
index 0000000..843ddfa
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 (file)
index 0000000..e5a0aea
--- /dev/null
@@ -0,0 +1,42 @@
+--TEST--
+GetImageSize() with 246x247 pixels
+--SKIPIF--
+<?php
+       require_once('skipif_imagetype.inc');
+?>
+--FILE--
+<?php
+       // Note: SWC requires zlib
+       $dir = opendir(dirname(__FILE__)) or die('cannot open directory: '.dirname(__FILE__));
+       $result = array();
+       $files  = array();
+       while (($file = readdir($dir)) !== FALSE) {
+               if (preg_match('/^246x247\./',$file)) {
+                       $files[] = $file;
+               }
+       }
+       closedir($dir);
+       sort($files);
+       foreach($files as $file) {
+               $result[$file] = getimagesize(dirname(__FILE__)."/$file");
+       }
+       var_dump($result);
+?>
+--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 (file)
index 0000000..0051df7
--- /dev/null
@@ -0,0 +1,42 @@
+--TEST--
+GetImageSize() with 384x385 pixels
+--SKIPIF--
+<?php
+       require_once('skipif_imagetype.inc');
+?>
+--FILE--
+<?php
+       // Note: SWC requires zlib
+       $dir = opendir(dirname(__FILE__)) or die('cannot open directory: '.dirname(__FILE__));
+       $result = array();
+       $files  = array();
+       while (($file = readdir($dir)) !== FALSE) {
+               if (preg_match('/^384x385\./',$file)) {
+                       $files[] = $file;
+               }
+       }
+       closedir($dir);
+       sort($files);
+       foreach($files as $file) {
+               $result[$file] = getimagesize(dirname(__FILE__)."/$file");
+       }
+       var_dump($result);
+?>
+--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"
+  }
+}