📄 bug27582_1.phpt
字号:
--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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -