请朋友帮助我,我最近尝试更改验证码的背景图像,但它不会改变,也尝试更改字体系列和边框半径。如果有人知道的话,请帮帮我......
session_start();
$change_time = md5(microtime());
$get_value = substr($change_time,0,6);
$_SESSION['value'] = $get_value;
$create_image = imagecreate(100,30);
imagecolorallocate($create_image,51,112,183);
$text_color = imagecolorallocate($create_image,255,255,255);
imagestring($create_image,50,15,7,$get_value,$text_color);
header('Content:image/jpeg'); imagejpeg($create_image);
答案 0 :(得分:0)
使用简单的PHP验证码非常容易。 在配置中,编辑背景数组:
'backgrounds' => array(
'path/and/fileBackground.png',
...
)