我有一个cronjob为我的在线表格(注册,联系和时事通讯)生成验证码。
我每天生成超过5000张图像,所以当我显示表格时,我会随机选择一张,然后只需显示图像并设置会话。
我的表非常简单:
captcha(id mediumint(5)unsigned PK,短语varchar(10));
然后我运行生成图像并插入数据库的cronjob。这个过程需要一段时间才能运行,我想知道是否有更好的方法来做到这一点,以最大化性能和生成,因为我有一整天运行的其他cronjob,我想确保我可以从cronjob拿走这个所以我的cronjob工作可以呼吸一点。
答案 0 :(得分:8)
创建一个文件调用Captcha.class.php
并将其放入:
class Captcha {
private $font = '/path/to/font/yourfont.ttf'; // get any font you like and dont forget to update this.
private function generateCode($characters) {
$possible = '23456789bcdfghjkmnpqrstvwxyz'; // why not 1 and i, because they look similar and its hard to read sometimes
$code = '';
$i = 0;
while ($i < $characters) {
$code .= substr($possible, mt_rand(0, strlen($possible)-1), 1);
$i++;
}
return $code;
}
function getImage($width, $height, $characters) {
$code = $this->generateCode($characters);
$fontSize = $height * 0.75;
$image = imagecreate($width, $height);
if(!$image) {
return FALSE;
}
$background_color = imagecolorallocate($image, 255, 255, 255);
$text_color = imagecolorallocate($image, 66, 42, 32);
$noiseColor = imagecolorallocate($image, 150, 150, 150);
for( $i=0; $i<($width*$height)/3; $i++ ) {
imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 1, 1, $noiseColor);
}
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), $noiseColor);
}
$textbox = imagettfbbox($fontSize, 0, $this->font, $code);
if(!$textbox) {
return FALSE;
}
$x = ($width - $textbox[4])/2;
$y = ($height - $textbox[5])/2;
imagettftext($image, $fontSize, 0, $x, $y, $text_color, $this->font , $code) or die('Error in imagettftext function');
header('Content-Type: image/jpeg');
imagejpeg($image);
imagedestroy($image);
$_SESSION['captcha'] = $code;
}
}
然后在您的页面中,您可以执行以下操作:
<img src="/captcha.php" />
然后在/captcha.php
中你会放:
session_start();
require('Captcha.class.php');
$Captcha = new Captcha();
$Captcha->getImage(120,40,6);
您可以更改参数,因为您也希望显示不同的验证码。
这样你就可以动态生成。如果您愿意,也可以随时将图像保存在磁盘上。