]> granicus.if.org Git - php/commitdiff
Add tests for bug77943
authorChristoph M. Becker <cmbecker69@gmx.de>
Mon, 29 Apr 2019 14:29:08 +0000 (16:29 +0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Mon, 29 Apr 2019 14:29:08 +0000 (16:29 +0200)
ext/gd/tests/bug77943.phpt [new file with mode: 0644]
ext/gd/tests/bug77943.png [new file with mode: 0644]

diff --git a/ext/gd/tests/bug77943.phpt b/ext/gd/tests/bug77943.phpt
new file mode 100644 (file)
index 0000000..1009b3e
--- /dev/null
@@ -0,0 +1,29 @@
+--TEST--
+Bug #77943 (imageantialias($image, false); does not work)
+--SKIPIF--
+<?php
+if (!extension_loaded('gd')) die('skip gd extension not available');
+?>
+--FILE--
+<?php
+require_once __DIR__ . '/func.inc';
+
+$width = 400;
+$height = 300;
+$im = imagecreatetruecolor($width, $height);
+$white = imagecolorallocate($im, 255, 255, 255);
+$blue = imagecolorallocate($im, 0, 0, 255);
+
+imageantialias($im, false);
+imagefilledrectangle($im, 0, 0, $width-1, $height-1, $white);
+
+imageline($im, 0, 0, $width, $height, $blue);
+imagesetthickness($im, 3);
+imageline($im, 10, 0, $width, $height-10, $blue);
+
+test_image_equals_file(__DIR__ . '/bug77943.png', $im);
+?>
+===DONE===
+--EXPECT--
+The images are equal.
+===DONE===
diff --git a/ext/gd/tests/bug77943.png b/ext/gd/tests/bug77943.png
new file mode 100644 (file)
index 0000000..6eae56c
Binary files /dev/null and b/ext/gd/tests/bug77943.png differ