Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- imagepalettecopy --EXTENSIONS-- gd --FILE-- <?php $failed = false; $im = imagecre..
Decoded Output download
--TEST--
imagepalettecopy
--EXTENSIONS--
gd
--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 "
";
$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 "
";
?>
--EXPECT--
copy palette 255 colors: ok
copy palette 1 color and alpha: ok
Did this file decode correctly?
Original Code
--TEST--
imagepalettecopy
--EXTENSIONS--
gd
--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
Function Calls
imagecreate | 1 |
Stats
MD5 | ca52be48a9670cc0a37c4e9ce37972dd |
Eval Count | 0 |
Decode Time | 92 ms |