game/show_reg_img/security2.php

48 lines
1.6 KiB
PHP
Raw Normal View History

2022-06-06 21:30:34 +00:00
<?php
header("Content-type: image/png");
2023-01-10 16:29:32 +00:00
// создаем картинку размером 172X52
2022-06-06 21:30:34 +00:00
$img = imagecreatetruecolor(70, 20) or die('Cannot create image');
$orange = imageColorAllocate($img, 255, 128, 64);
2023-01-10 16:29:32 +00:00
// заполняем фон картинки
2022-06-06 21:30:34 +00:00
imagefill($img, 0, 0, 0x616161);
$x=0;
$i = 1;
$sum = "";
2023-01-10 16:29:32 +00:00
//цвет текста
2022-06-06 21:30:34 +00:00
$color_RGB = rand(180,200);
while ($i++ <=5000)
{
imageSetPixel($img, rand(0,170), rand(0,50),0x515151);
}
2023-01-10 16:29:32 +00:00
//рисуем 2 линии
2022-06-06 21:30:34 +00:00
imageLine($img, rand(0,10), rand(0,50), rand(110,170), rand(0,50), 0x909090);
imageLine($img, rand(0,10), rand(0,50), rand(110,170), rand(0,50), 0x909090);
2023-01-10 16:29:32 +00:00
//рамка
2022-06-06 21:30:34 +00:00
imageRectangle($img,0,0,170,50,0x343434);
$fonts = array ('fonts/CHILLER.ttf');
$font = '../'.$fonts[rand(0, sizeof($fonts)-1)];
2023-01-10 16:29:32 +00:00
// выводим одну цифру за один проход цикла (всего 6 цифр)
2022-06-06 21:30:34 +00:00
$i = 1;
while ($i++ <= 5)
{
2023-01-10 16:29:32 +00:00
// выводим текст поверх картинки
2022-06-06 21:30:34 +00:00
imagettftext($img, rand(18,18), 0, $x=$x+10, 16+rand(0,4),
imagecolorallocate($img, $color_RGB,$color_RGB,$color_RGB), $font, $rnd = rand(0,9));
2023-01-10 16:29:32 +00:00
// Собираем в одну строку все символы на картинке
2022-06-06 21:30:34 +00:00
$sum = $sum.(string)$rnd;
}
2023-01-10 16:29:32 +00:00
//Не забудьте $sum записать в таблицу как STR1
2022-06-06 21:30:34 +00:00
2023-01-10 16:29:32 +00:00
// выводим готовую картинку в формате PNG
2022-06-06 21:30:34 +00:00
imagepng($img);
2023-01-10 16:29:32 +00:00
// освобождаем память, выделенную для картинки
2022-06-06 21:30:34 +00:00
imagedestroy($img);
2023-01-10 16:29:32 +00:00
// Помещаем защитный код в сессию
2022-06-06 21:30:34 +00:00
$_SESSION['code'] = $sum;
?>