|
|
|
@ -8,7 +8,7 @@ gdimagefill() function (Bug #19366 (fixed in bundled libgd)) |
|
|
|
--FILE-- |
|
|
|
<?php |
|
|
|
/* $id$ */ |
|
|
|
$dest = dirname(realpath(__FILE__)) . 'bug27582.png'; |
|
|
|
$dest = dirname(realpath(__FILE__)) . '/bug27582.png'; |
|
|
|
@unlink($dest); |
|
|
|
$im = ImageCreateTrueColor(10, 10); |
|
|
|
imagealphablending($im, true); |
|
|
|
@ -18,6 +18,7 @@ $color = ImageColorAllocateAlpha($im, 0, 0, 0, 1); |
|
|
|
ImageFillToBorder($im, 5, 5, $bordercolor, $color); |
|
|
|
imagepng($im, $dest); |
|
|
|
echo md5_file($dest) . "\n"; |
|
|
|
@unlink($dest); |
|
|
|
?> |
|
|
|
--EXPECT-- |
|
|
|
08287f8f5d406946009df5f04ca83dc0 |