summaryrefslogtreecommitdiff
path: root/ext/gd/tests/bug27582_1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/bug27582_1.phpt')
-rw-r--r--ext/gd/tests/bug27582_1.phpt28
1 files changed, 0 insertions, 28 deletions
diff --git a/ext/gd/tests/bug27582_1.phpt b/ext/gd/tests/bug27582_1.phpt
deleted file mode 100644
index b85f7457e0..0000000000
--- a/ext/gd/tests/bug27582_1.phpt
+++ /dev/null
@@ -1,28 +0,0 @@
---TEST--
-Bug #27582 (ImageFillToBorder() on alphablending image looses alpha on fill color)
---SKIPIF--
-<?php
- if (!extension_loaded('gd')) die("skip gd extension not available\n");
- if (!GD_BUNDLED) die('skip external GD libraries always fail');
-?>
---FILE--
-<?php
-/* $id$ */
-$dest = dirname(realpath(__FILE__)) . '/bug27582.png';
-@unlink($dest);
-$im = ImageCreateTrueColor(10, 10);
-imagealphablending($im, true);
-imagesavealpha($im, true);
-$bordercolor=ImageColorAllocateAlpha($im, 0, 0, 0, 2);
-$color = ImageColorAllocateAlpha($im, 0, 0, 0, 1);
-ImageFillToBorder($im, 5, 5, $bordercolor, $color);
-imagepng($im, $dest);
-
-$im2 = imagecreatefrompng($dest);
-$col = imagecolorat($im2, 5, 5);
-$color = imagecolorsforindex($im2, $col);
-echo $color['alpha'];
-@unlink($dest);
-?>
---EXPECT--
-1