diff options
author | Pierre Joye <pajoye@php.net> | 2003-07-23 00:17:29 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2003-07-23 00:17:29 +0000 |
commit | 28bc693d3a7d95531f40dec44b0c68bccab7acef (patch) | |
tree | 53df0271879ac57bc69299b6ddc0e2924638d077 | |
parent | 768468257cf777df9feed3b9973d78d3290ab63b (diff) | |
download | php-git-28bc693d3a7d95531f40dec44b0c68bccab7acef.tar.gz |
- Remove imagepng, not used in test
-rw-r--r-- | ext/gd/tests/bug24594.phpt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/gd/tests/bug24594.phpt b/ext/gd/tests/bug24594.phpt index f9464f7289..e7b9a653f2 100644 --- a/ext/gd/tests/bug24594.phpt +++ b/ext/gd/tests/bug24594.phpt @@ -51,7 +51,7 @@ Bug #24594 (Filling an area using tiles). $res .= imagecolorat($base,14,16)==$black?'1':'0'; $res .= imagecolorat($base,15,17)==$black?'1':'0'; echo "$res\n"; - imagepng($base,"filled1.png"); + imagefilledrectangle($base,0,0,149,149,$white); imagerectangle($base, 9,9,139,139,$black); imageline($base, 9,9,139,139,$black); @@ -79,7 +79,6 @@ Bug #24594 (Filling an area using tiles). $res .= imagecolorat($base,0,0)==$black?'1':'0'; echo "$res\n"; - imagepng($base,"filled.png"); ?> --EXPECT-- 000000111111101010 |