首页 > 代码库 > 一个简单的验证码

一个简单的验证码

//设置画布宽度
$image = imagecreatetruecolor(100, 50);
//画布颜色
$bgcolor = imagecolorallocate($image, 255, 255, 255);

// imagefill — 区域填充
imagefill($image, 0, 0, $bgcolor);

//四个随机验证码
// for($i=0;$i<4;$i++){
//  $fontsize = 6;//字体大小
//  $fontcolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120)); //字体颜色
//  $fontcontent = rand(0,9);//随机数字
//  //定位
//  $x = ($i * 100 / 4)+ rand(5,10); //
//  $y = rand(5,10);
//  imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);
// }
//包含英文字母的验证码
for($i=0;$i<4;$i++){
    $fontsize = 6;
    $data =http://www.mamicode.com/‘123456789abcdefghijklmnopqrstuvwxy‘ ;//建立字典"content-type:image/png");

//输出图像
imagepng($image);
//销毁图像
imagedestroy($image);

一个简单的验证码