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

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

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

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

<?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);
}
//干擾點元素
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)文章

最新評論

双辽市| 大渡口区| 桦甸市| 辽宁省| 麻栗坡县| 德安县| 阿坝县| 顺义区| 湘潭县| 镇沅| 西华县| 中卫市| 台东市| 阿坝| 昌都县| 石河子市| 广宗县| 崇信县| 且末县| 子长县| 贡觉县| 桐柏县| 汾阳市| 怀化市| 克山县| 高邑县| 左贡县| 广水市| 太和县| 赤峰市| 祁连县| 自贡市| 佳木斯市| 玉田县| 贡嘎县| 遂昌县| 霞浦县| 高平市| 融水| 涪陵区| 牡丹江市|