最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php生成數(shù)字字母的驗(yàn)證碼圖片

 更新時(shí)間:2015年07月14日 11:11:52   投稿:hebedich  
本文給大家分享的是使用php實(shí)現(xiàn)的生成包含數(shù)字字母的驗(yàn)證碼圖片的代碼,十分的簡單實(shí)用,有需要的小伙伴可以參考下

php生成數(shù)字字母的驗(yàn)證碼圖片

<?php

header ('Content-Type: image/png');
$image=imagecreatetruecolor(100, 30);
$color=imagecolorallocate($image, 255, 255, 255);
imagefill($image, 20, 20, $color);
//只含有數(shù)字
// for($i=0;$i<4;$i++){
  // $font=6;
  // $x=rand(5,10)+$i*100/4;
  // $y=rand(8, 15);
  // $string=rand(0, 9);
  // $color=imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));
  // imagestring($image, $font, $x, $y, $string, $color);
// }

//含有數(shù)字和字母的
for($i=0;$i<4;$i++){
  $fontSize=6;
  $x=rand(5,10)+$i*100/4;
  $y=rand(5, 15);
  $data='abcdefghijklmnopqrstuvwxyz123456789';
  $string=substr($data,rand(0, strlen($data)),1);
  $color=imagecolorallocate($image,rand(0,120), rand(0,120), rand(0,120));
  imagestring($image, $fontSize, $x, $y, $string, $color);
}
//干擾點(diǎn)元素
for($i=0;$i<200;$i++){
  $pointColor=imagecolorallocate($image, rand(100, 255), rand(100, 255), rand(100, 255));
  imagesetpixel($image, rand(0, 100), rand(0, 30), $pointColor);
}
//干擾線元素
for($i=0;$i<2;$i++){
  $linePoint=imagecolorallocate($image, rand(150, 255), rand(150, 255), rand(150, 255));
  imageline($image, rand(10, 50), rand(10, 20), rand(80,90), rand(15, 25), $linePoint);
}
imagepng($image);
imagedestroy($image);
?>

以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。

相關(guān)文章

最新評論

河南省| 弥渡县| 仁寿县| 长沙市| 兴山县| 崇州市| 清新县| 当阳市| 饶河县| 原平市| 咸阳市| 东山县| 海林市| 葵青区| 遂溪县| 阿克陶县| 剑阁县| 卢氏县| 宽甸| 峨眉山市| 台安县| 北流市| 呼和浩特市| 陆川县| 浦东新区| 海南省| 文山县| 沙坪坝区| 昌吉市| 苏州市| 平湖市| 贡嘎县| 西和县| 铜陵市| 乐陵市| 共和县| 萨嘎县| 鸡东县| 红安县| 普洱| 平塘县|