Большинство хостов допускают манипулирование изображениями GD для PHP. Его на самом деле очень легко выучить, и вы можете сделать свой собственный сценарий капчи через 10 или 20 минут. То есть, если вы уже знаете PHP.
Это довольно простой пример скрипта: linky
Пример:
Код:
<?php
/*
Author: Simon Jarvis
Modified: Azmisov
Copyright: 2006 Simon Jarvis
License: GPL2
Link: http://www.white-hat-web-design.co.uk/articles/php-captcha.php
*/
//OPTIONS
$dwidth = 260;
$dheight = 90;
$dcharacters = 6;
//https://fontlibrary.org/en/font/jellee-typeface
$font = './jellee_roman.ttf';
$possible = '234679ABCDEHJLMNPTUVWXY';
//CODE
session_start();
function generateCode($characters) {
global $possible;
$code = '';
$len = strlen($possible)-1;
for($i=0; $i<$characters; $i++)
$code .= substr($possible, mt_rand(0, $len), 1);
return $code;
}
function createCaptcha($width,$height,$characters) {
global $font;
$code = generateCode($characters);
$_SESSION['captcha'] = $code;
//font size will be 75% of the image height
$font_size = $height * 0.4;
$image = imagecreate($width, $height) or die('Cannot initialize new GD image stream');
//set the colours
$background_color = imagecolorallocate($image, 20, 58, 78);
$text_color = imagecolorallocate($image, 74, 143, 200);
$noise_color = imagecolorallocate($image, 100, 120, 200);
//generate random dots in background
for( $i=0; $i<($width*$height)/3; $i++)
imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 1, 1, $noise_color);
//generate random lines in background
for($i=0; $i<($width*$height)/150; $i++)
imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);
//create textbox and add text
$textbox = imagettfbbox($font_size, 0, $font, $code) or die('Error in imagettfbbox function');
$x = ($width - $textbox[4])/2;
$y = ($height - $textbox[5])/2;
imagettftext($image, $font_size, 0, $x, $y, $text_color, $font , $code) or die('Error in imagettftext function');
//generate random dots/lines in foreground
for($i=0; $i<2; $i++)
imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);
for( $i=0; $i<40; $i++)
imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 3, 3, $noise_color);
//Apply filters
imagefilter($image, IMG_FILTER_CONTRAST, 1);
imagefilter($image, IMG_FILTER_EMBOSS);
imagefilter($image, IMG_FILTER_EDGEDETECT);
imagefilter($image, IMG_FILTER_NEGATE);
/* output captcha image to browser */
header('Content-Type: image/jpeg');
imagejpeg($image);
imagedestroy($image);
}
createCaptcha($width,$height,$characters);
?>