欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

GD2使用图像处理技术生成验证码

程序员文章站 2022-06-23 18:37:49
...

一 代码

<?php
header('content-type:image/png');
srand((double) microtime() * 1000000);
$im = imagecreate(60, 20);
imagefill($im, 0, 0, imagecolorallocate($im, 200, 200, 200));        //测试代码
//$validatorCode = $_GET['code'];        //网站使用代码
$validatorCode = '1234';
imagestring($im, rand(2, 5), 10, 3, substr($validatorCode, 0, 1), imagecolorallocate($im, 0, rand(0, 255), rand(0, 255)));
imagestring($im, rand(2, 5), 20, 3, substr($validatorCode, 1, 1), imagecolorallocate($im, rand(0, 255), 0, rand(0, 255)));
imagestring($im, rand(2, 5), 30, 3, substr($validatorCode, 2, 1), imagecolorallocate($im, rand(0, 255), rand(0, 255), 0));
imagestring($im, rand(2, 5), 40, 3, substr($validatorCode, 3, 1), imagecolorallocate($im, 0, rand(0, 255), rand(0, 255)));
for ($i = 0; $i < 200; $i ++) {
    imagesetpixel($im, rand() % 70, rand() % 30, imagecolorallocate($im, rand(0, 255), rand(0, 255), rand(0, 255)));
}
imagepng($im);
imagedestroy();

 

二 运行结果
GD2使用图像处理技术生成验证码
            
    
    博客分类: PHP GD2验证码 
 
  • GD2使用图像处理技术生成验证码
            
    
    博客分类: PHP GD2验证码 
  • 大小: 1.7 KB
相关标签: GD2 验证码