php图片验证码

Posted 小胖不胖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php图片验证码相关的知识,希望对你有一定的参考价值。

<?php
    header(‘Content-type:image/jpeg‘);
    $width=120;
    $height=40;
    $element=array(‘a‘,‘b‘,‘c‘,‘d‘,‘f‘,‘g‘,‘h‘,‘i‘,‘j‘,‘k‘,‘l‘,‘m‘,‘n‘);
    
    $img=  imagecreatetruecolor($width, $height);
    $colorBg=imagecolorallocate($img, rand(200,255),rand(200,255),rand(200,255));
    $colorBorder= imagecolorallocate($img, rand(200,255), rand(200,255), rand(200,255));
    $colorPixel=  imagecolorallocate($img, rand(100,200), rand(100,200), rand(100,200));
   $colorstring=  imagecolorallocate($img, rand(10,100), rand(10,100), rand(10,100));
    imagefill($img, 0, 0, $colorBg);
    imagerectangle($img, 0, 0, $width-1, $height-1, $colorBorder); 
    for($i=0;$i<100;$i++){
            imagesetpixel($img, rand(0,$width-1), rand(0, $height-1), $colorPixel);
    }
    for($i=0;$i<3;$i++){
        imageline($img, rand(0, $width/2), rand(0, $height), rand($width/2, $width), rand(0, $height), $colorPixel);
    }
//    imagestring($img,5, 0, 0, ‘abcd‘, $colorPixel);
    for($i=0;$i<5;$i++){
        $string.=$element[rand(0, count($element)-1)];
    }
    imagettftext($img, 24, rand(-5, 5), rand(5,15), rand(30, 35), $colorstring, ‘font/yugang.ttf‘, $string);
    imagejpeg($img);
    imagedestroy($img );
?>

 

以上是关于php图片验证码的主要内容,如果未能解决你的问题,请参考以下文章

PHP GD 生成图片验证码+session获取储存验证码

php生成各种验证码

PHP生成图片验证码demoOOP面向对象版本

如何使用PHP添加GIF动态图片验证码

PHP生成图片验证码点击切换实例

PHP 生成验证码(+图片没有显示的解决办法)