91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP碎碼——ci的驗證碼

發布時間:2020-07-19 18:48:54 來源:網絡 閱讀:396 作者:lc994811089 欄目:web開發


自己寫驗證碼的時候在文字定位上拿捏不準


于是把ci驗證碼主要部分扣了出來,看看,一般般,干擾線是亮點


代碼去除了很多判斷,簡化了很多,顯示效果一樣

<?php
$defaults = array(
    'word'        => '',
    'img_path'    => './',
    'img_url'    => '',
    'img_width'    => '150',
    'img_height'    => '30',
    'font_path'    => './instance/font/Elephant.ttf',
    'expiration'    => 7200,
    'word_length'    => 4,
    'font_size'    => 16,
    'img_id'    => '',
    'pool'        => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
    'colors'    => array(
        'background'    => array(255,255,255),
        'border'    => array(153,102,102),
        'text'        => array(204,153,153),
        'grid'        => array(255,182,182)
    )
);

// 將變量從數組中取出
foreach ($defaults as $key => $val){
        $$key = $val;
}

// 生成隨機碼
$word = '';
$pool_length = strlen($pool);
$rand_max = $pool_length - 1;
for ($i = 0; $i < $word_length; $i++){
    $word .= $pool[mt_rand(0, $rand_max)];
}


// 驗證碼長度
$length    = strlen($word);

//角度
$angle    = ($length >= 6) ? mt_rand(-($length-6), ($length-6)) : 0;
$x_axis    = mt_rand(6, (360/$length)-16);
$y_axis = ($angle >= 0) ? mt_rand($img_height, $img_width) : mt_rand(6, $img_height);

// 創建圖片句柄
$im = p_w_picpathcreatetruecolor($img_width, $img_height);

// 創建顏色
foreach ($colors as $key => $values)
{
    $colors[$key] = p_w_picpathcolorallocate($im, $colors[$key][0], $colors[$key][1], $colors[$key][2]);
}


// 畫了個和圖片等大的矩形,就是背景
ImageFilledRectangle($im, 0, 0, $img_width, $img_height, $colors['background']);


// -----------------干擾線--------------------------
$theta        = 1;
$thetac        = 7;
$radius        = 16;
$circles    = 20;
$points        = 32;

for ($i = 0, $cp = ($circles * $points) - 1; $i < $cp; $i++)
{
    $theta += $thetac;
    $rad = $radius * ($i / $points);
    $x = ($rad * cos($theta)) + $x_axis;
    $y = ($rad * sin($theta)) + $y_axis;
    $theta += $thetac;
    $rad1 = $radius * (($i + 1) / $points);
    $x1 = ($rad1 * cos($theta)) + $x_axis;
    $y1 = ($rad1 * sin($theta)) + $y_axis;
    p_w_picpathline($im, $x, $y, $x1, $y1, $colors['grid']);
    $theta -= $thetac;
}
// --------------------------------------------------------------

// 無字體
// ($font_size > 5) && $font_size = 5;
// $x = mt_rand(0, $img_width / ($length / 3));
// $y = 0;
// for ($i = 0; $i < $length; $i++){
//     $y = mt_rand(0 , $img_height / 2);
//     p_w_picpathstring($im, $font_size, $x, $y, $word[$i], $colors['text']);
//     $x += ($font_size * 2);
// }



// 有字體
// x 第一個字符隨機在圖片的前面一小段,后面依次加一個字符大小的寬度
// y 圖片的1/2到距離底部3px之間隨機
($font_size > 30) && $font_size = 30;
$x = mt_rand(0, $img_width / ($length / 1.5));
$y = $font_size + 2;
for ($i = 0; $i < $length; $i++){
    $y = mt_rand($img_height / 2, $img_height - 3);
    p_w_picpathttftext($im, $font_size, $angle, $x, $y, $colors['text'], $font_path, $word[$i]);
    $x += $font_size;
}


//畫矩形框
p_w_picpathrectangle($im, 0, 0, $img_width - 1, $img_height - 1, $colors['border']);



// 刪除以前保存的圖片
$now = microtime(TRUE);

$current_dir = opendir($img_path);
while ($filename = readdir($current_dir)){
    if (in_array(substr($filename, -4), array('.jpg', '.png'))&& (str_replace(array('.jpg', '.png'), '', $filename) + 0.1) < $now){
        @unlink($img_path.$filename);
    }
}
@closedir($current_dir);









// 拼接文件路徑并保存
$img_url = rtrim($img_url, '/').'/';
$img_filename = $now.'.jpg';
p_w_picpathjpeg($im, $img_path.$img_filename);

$img = '<img  src="'.$img_url.$img_filename.'"  alt=" " />';

// ImageDestroy($im);

// return array('word' => $word, 'time' => $now, 'p_w_picpath' => $img, 'filename' => $img_filename);

// echo $img;

//通知瀏覽器是png格式
header('Content-type:p_w_picpath/jpg');
//以png格式輸出
p_w_picpathjpeg($im);
//銷毀內存中的圖片資源
p_w_picpathdestroy($im);


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

奎屯市| 拉孜县| 安新县| 北海市| 新沂市| 红河县| 昌平区| 芮城县| 勃利县| 丰县| 阿城市| 武平县| 盘山县| 赤峰市| 澄城县| 体育| 增城市| 闸北区| 彰化县| 西昌市| 金华市| 林芝县| 建平县| 蓬莱市| 靖州| 灵石县| 永州市| 八宿县| 探索| 额敏县| 石景山区| 宜兴市| 介休市| 五大连池市| 灵寿县| 盐池县| 道孚县| 西林县| 池州市| 太仆寺旗| 屯门区|