summaryrefslogtreecommitdiff
path: root/ext/gd/tests/copypalette.phpt
blob: ec00c030a422610c3401b37cfadcd5455c6da879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
--TEST--
imagepalettecopy
--SKIPIF--
<?php
        if (!function_exists('imagecolorat')) die("skip gd extension not available\n");
?>
--FILE--
<?php
$failed = false;
$im = imagecreate(1,1);
for ($i=0; $i<256; $i++) {
	imagecolorallocate($im, $i, $i, $i);
}

$im2 = imagecreate(1,1);
imagepalettecopy($im2, $im);

for ($i=0; $i<256; $i++) {
	$c = imagecolorsforindex($im2, $i);
	if ($c['red']!=$i || $c['green']!=$i || $c['blue']!=$i) {
		$failed = true;
		break;
	} 
}
echo "copy palette 255 colors: ";
echo $failed ? 'failed' : 'ok';
echo "\n";

$im = imagecreate(1,1);
$im2 = imagecreate(1,1);
imagecolorallocatealpha($im, 0,0,0,100);

imagepalettecopy($im2, $im);
$c = imagecolorsforindex($im2, 0);
if ($c['red']!=0 || $c['green']!=0 || $c['blue']!=0 || $c['alpha']!=100) {
	$failed = true;
} 
echo 'copy palette 1 color and alpha: ';
echo $failed ? 'failed' : 'ok';
echo "\n";
?>
--EXPECT--
copy palette 255 colors: ok
copy palette 1 color and alpha: ok