Просмотр файла system/kapa.php

Размер файла: 1.32Kb
<?php

$kapa='JRCMS';
$id=(int)$_GET['id'];
if(isset($id)){
$pkod = str_split($id);

$img = imagecreate(50,26);
$fon = imagecolorallocate($img,226,238,247);
imagefill($img,0,0,$fon);
$color1 = imagecolorallocate($img,mt_rand(0,204),mt_rand(0,204),mt_rand(0,204));
$color2 = imagecolorallocate($img,mt_rand(0,204),mt_rand(0,204),mt_rand(0,204));
$color3 = imagecolorallocate($img,mt_rand(0,204),mt_rand(0,204),mt_rand(0,204));
$color4 = imagecolorallocate($img,mt_rand(0,204),mt_rand(0,204),mt_rand(0,204));

$color5 = imagecolorallocate($img,238,47,101);
imagestring($img, 5, mt_rand(2,3), mt_rand(0,3), $pkod[0], $color1);
imagestring($img, 5, mt_rand(10,12), mt_rand(1,3), $pkod[1], $color2);
imagestring($img, 5, mt_rand(18,23), mt_rand(3,4), $pkod[2], $color2);
imagestring($img, 5, mt_rand(33,35), mt_rand(3,4), $pkod[3], $color3);
imagestring($img, 1, 1, 18,$kapa, $color5);
for ($i=0; $i<5; $i++){
$temp_color = imagecolorallocate ($img,mt_rand(155,204),mt_rand(155,204),mt_rand(155,204));
imageline($img, mt_rand(0,42), mt_rand(0,18), mt_rand(0,42), mt_rand(0,18), $temp_color);
}
for ($i=0; $i<50; $i++){
$temp_color = imagecolorallocate ($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
imagesetpixel ($img, mt_rand(0, 48), mt_rand(0, 18), $temp_color);
}
header("Content-type: image/gif");
echo imagegif($img);
imagedestroy($img);
}
?>