diff options
author | Pierre Joye <pierre.php@gmail.com> | 2013-02-27 21:02:47 +0100 |
---|---|---|
committer | Pierre Joye <pierre.php@gmail.com> | 2013-02-27 21:02:47 +0100 |
commit | 82765a07800fe39f662bb45fd18199d007e0dc23 (patch) | |
tree | d779715934af30df4b07aec942b807cb4fc15b38 /ext/gd/tests/imageflip.phpt | |
parent | 74983a45cc3be6f9697843d9dfb7913021c2519b (diff) | |
download | php-git-82765a07800fe39f662bb45fd18199d007e0dc23.tar.gz |
- typo
Diffstat (limited to 'ext/gd/tests/imageflip.phpt')
-rw-r--r-- | ext/gd/tests/imageflip.phpt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/gd/tests/imageflip.phpt b/ext/gd/tests/imageflip.phpt index a1922c2da4..a326e0a2ba 100644 --- a/ext/gd/tests/imageflip.phpt +++ b/ext/gd/tests/imageflip.phpt @@ -14,11 +14,10 @@ imagesetpixel($im, 0, 98, 0x00FF00); imagesetpixel($im, 98, 0, 0xFF0000);
imagesetpixel($im, 98, 98, 0x0000FF);
-imageflip($im, IMG_FLIP_HORINZONTAL);
+imageflip($im, IMG_FLIP_HORIZONTAL);
imageflip($im, IMG_FLIP_VERTICAL);
imageflip($im, IMG_FLIP_BOTH);
-
var_dump(dechex(imagecolorat($im, 0, 0)));
var_dump(dechex(imagecolorat($im, 0, 98)));
var_dump(dechex(imagecolorat($im, 98, 0)));
|