php-src/ext/gd/tests/bug38179.phpt
Christoph M. Becker a375d54785
Migrate skip checks to --EXTENSIONS-- for ext/gd
Cf. PR #6787.

Closes GH-6994.
2021-05-22 15:38:51 +02:00

26 lines
557 B
PHP

--TEST--
Bug #38179 (imagecopy from a palette to a truecolor image loses alpha channel)
--EXTENSIONS--
gd
--FILE--
<?php
$src = imagecreate(5,5);
$c0 = imagecolorallocate($src, 255,255,255);
$c1 = imagecolorallocatealpha($src, 255,0,0,70);
imagealphablending($src, 0);
imagefill($src, 0,0, $c1);
$dst_tc = imagecreatetruecolor(5,5);
imagealphablending($dst_tc, 0);
imagecopy($dst_tc, $src, 0,0, 0,0, imagesx($src), imagesy($src));
$p1 = imagecolorat($dst_tc, 3,3);
printf("%X\n", $p1);
imagedestroy($src); imagedestroy($dst_tc);
?>
--EXPECT--
46FF0000