如何用php生成扭曲及旋转的验证码图片_php技巧

复制代码 代码如下:

<?php
function make_rand($length="32"){//验证码文字生成函数
        $str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
    $result="";
    for($i=0;$i<$length;$i++){
        $num[$i]=rand(0,61);
        $result.=$str[$num[$i]];
    }
    return $result;
}
$checkcode = make_rand(5);
$im_x=160;
$im_y=32;
function make_crand($length="5") {
    $string = '';
    for($i=0;$i<$length;$i++) {
        $string .= chr(rand(0xB0,0xF7)).chr(rand(0xA1,0xFE));
    }
    return $string;
}
function getAuthImage($text , $im_x = 230 , $im_y = 32) {
    $im = imagecreatetruecolor($im_x,$im_y);
    $text_c = ImageColorAllocate($im, mt_rand(0,100),mt_rand(0,100),mt_rand(0,100));
    $tmpC0=mt_rand(100,255);
    $tmpC1=mt_rand(100,255);
    $tmpC2=mt_rand(100,255);
    $buttum_c = ImageColorAllocate($im,$tmpC0,$tmpC1,$tmpC2);
    imagefill($im, 16, 13, $buttum_c);
    //echo $text;
    $font = 'c://WINDOWS//Fonts//simsun.ttc';
    //echo strlen($text);
    $text=iconv("gb2312","UTF-8",$text);
    //echo mb_strlen($text,"UTF-8");
    for ($i=0;$i<mb_strlen($text);$i++)
    {
            $tmp =mb_substr($text,$i,1,"UTF-8");
            $array = array(-1,0,1);
            $p = array_rand($array);
            $an = $array[$p]*mt_rand(1,9);//角度
            $size = 20;
            imagettftext($im,$size,$an,10+$i*$size*2,25,$text_c,$font,$tmp);
    }
     $distortion_im = imagecreatetruecolor ($im_x, $im_y);
     imagefill($distortion_im, 16, 13, $buttum_c);
     for ( $i=0; $i<$im_x; $i++) {
         for ( $j=0; $j<$im_y; $j++) {
             $rgb = imagecolorat($im, $i , $j);
             if( (int)($i+20+sin($j/$im_y*2*M_PI)*10) <= imagesx($distortion_im) && (int)($i+20+sin($j/$im_y*2*M_PI)*10) >=0 ) {
                 imagesetpixel ($distortion_im, (int)($i+10+sin($j/$im_y*2*M_PI-M_PI*0.5)*3) , $j , $rgb);
             }
         }
     }
     //加入干扰象素;
    $count = 600;//干扰像素的数量
    for($i=0; $i<$count; $i++){
            $randcolor = ImageColorallocate($distortion_im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
            imagesetpixel($distortion_im, mt_rand()%$im_x , mt_rand()%$im_y , $randcolor);
    }
    $line_c=5;
     //imageline
     for($i=0; $i < $line_c; $i++) {
         $linecolor = imagecolorallocate($distortion_im, 17, 158, 20);
         $lefty = mt_rand(1, $im_x-1);
         $righty = mt_rand(1, $im_y-1);
         imageline($distortion_im, 0, $lefty, imagesx($distortion_im), $righty, $linecolor);
     }
     Header("Content-type: image/PNG");
    //以PNG格式将图像输出到浏览器或文件;
    //ImagePNG($im);
    ImagePNG($distortion_im);
    //销毁一图像,释放与image关联的内存;
    ImageDestroy($distortion_im);
    ImageDestroy($im);
}
?>

用法示例如下:

复制代码 代码如下:

<?php
getAuthImage(make_crand(5));
?>

时间: 2024-11-20 00:50:26

如何用php生成扭曲及旋转的验证码图片_php技巧的相关文章

php生成数字字母的验证码图片_php技巧

php生成数字字母的验证码图片 <?php header ('Content-Type: image/png'); $image=imagecreatetruecolor(100, 30); $color=imagecolorallocate($image, 255, 255, 255); imagefill($image, 20, 20, $color); //只含有数字 // for($i=0;$i<4;$i++){ // $font=6; // $x=rand(5,10)+$i*100/

php生成验证码函数_php技巧

php生成验证码的函数,实用靠谱.先上下生成的验证码的效果图(这里生成的是全数字的验证码的示例效果): 下面是php生成验证码的源码: <?php session_start(); //session_register('CheckCode'); //PHP4.2以上版本不需要用session_register()注册SESSION变量 $type='gif'; $width= 45; $height= 20; header("Content-type: image/".$typ

php生成动态验证码gif图片_php技巧

这是一个通过php生成的动态验证码图片的示例,重点是可以运行哦!下面先发下效果图: 下面是php生成动态验证码需要用到的相关类和函数. <?php /** *ImageCode 生成包含验证码的GIF图片的函数 *@param $string 字符串 *@param $width 宽度 *@param $height 高度 **/ function ImageCode($string='',$width=75,$height=25){ $authstr=$string?$string:((tim

PHP QRCODE生成彩色二维码的方法_php技巧

本文实例讲述了PHP QRCODE生成彩色二维码的方法.分享给大家供大家参考,具体如下: 这里重写了下PHPQRCODE,精简了部分代码,合并PNG GIF JPEG的输出. 参数说明: 调用方式: 复制代码 代码如下: QRcode::IMGout($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $col=array(array(255,255,255),array(0,0,0)),$margin =2, $saveandp

使用PHP生成二维码的方法汇总_php技巧

随着科技的进步,二维码应用领域越来越广泛,本站之前已有文章介绍通过使用jQuery插件来生成二维码,今天我给大家分享下如何使用PHP生成二维码,以及如何生成中间带LOGO图像的二维码. 利用Google API生成二维码 Google提供了较为完善的二维码生成接口,调用API接口很简单,以下是调用代码: $urlToEncode="http://www.jb51.net"; generateQRfromGoogle($urlToEncode); /** * google api 二维码

asp.net生成字母和数字混合图形验证码_实用技巧

验证码技术是网站开发过程中比较重要的技术,可以防止非法人员利用注册机或者登陆工具来攻击我们的网站.下面是效果图: 具体实现方法如下: 1.主要思路是:引用Using System.Drawing命名空间,利用Graphics的FromImage方法创建一个画布,同时设置画布的宽和高,然后通过Graphics类 的DrawString方法随机生成的字符串绘制到画布中,绘制验证码的同时,在画布中利用SetPixel方法绘制一些色点,从而防止非法人员利用机器 人来进行登陆.当我们绘制验证码完毕后,在需

PHP数组生成XML格式数据的封装类实例_php技巧

本文实例讲述了PHP数组生成XML格式数据的封装类.分享给大家供大家参考,具体如下: 类库代码:MakeXML.php: <?php /** * MakeXML * * @author Lin Jiong(slime09@gmail.com) * @version v1.0 * @license Copyright (c) 2009 Lin Jiong (www.cn09.com) * The LGPL (http://www.gnu.org/licenses/lgpl.html) licens

php 生成签名及验证签名详解_php技巧

php 生成签名及验证签名 <?php /** * 根据原文生成签名内容 * * @param string $data 原文内容 * * @return string * @author confu */ function sign($data) { $filePath = 'test.p12'; if(!file_exists($filePath)) { return false; } $pkcs12 = file_get_contents($filePath); if (openssl_p

php生成高清缩略图实例详解_php技巧

本文实例讲述了php生成高清缩略图的方法.分享给大家供大家参考,具体如下: 在使用php的函数生成缩略图的使用,缩略图很多情况下都会失真,这个时候需要有一些对应的解决方法. 1.用imagecreatetruecolor和imageCopyreSampled函数分别取代imagecreate和imagecopyresized 2.给imagejpeg的第三个参数带上100(例:imagejpeg($ni,$toFile,100)) 下面是具体的函数 function CreateSmallIma