clicaptcha.class.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. class clicaptcha{
  3. function __construct(){
  4. header("Content-type: text/html; charset=utf-8");
  5. session_start();
  6. error_reporting(E_ERROR | E_WARNING | E_PARSE);
  7. }
  8. public function creat(){
  9. $imagePathArr = array('image/1.jpg', 'image/2.jpg', 'image/3.jpg');
  10. $imagePath = $imagePathArr[rand(0, count($imagePathArr) - 1)];
  11. $fontPath = realpath('font/SourceHanSansCN-Normal.otf');
  12. foreach($this->randChars(8) as $v){
  13. $fontSize = rand(15, 30);
  14. //字符串文本框宽度和长度
  15. $fontarea = imagettfbbox($fontSize, 0, $fontPath, $v);
  16. $textWidth = $fontarea[2] - $fontarea[0];
  17. $textHeight = $fontarea[1] - $fontarea[7];
  18. $tmp['text'] = $v;
  19. $tmp['size'] = $fontSize;
  20. $tmp['width'] = $textWidth;
  21. $tmp['height'] = $textHeight;
  22. $textArr['text'][] = $tmp;
  23. }
  24. //图片宽高和类型
  25. list($imageWidth, $imageHeight, $imageType) = getimagesize($imagePath);
  26. $textArr['width'] = $imageWidth;
  27. $textArr['height'] = $imageHeight;
  28. $text = [];
  29. //随机生成汉字位置
  30. foreach($textArr['text'] as &$v){
  31. list($x, $y) = $this->randPosition($textArr['text'], $imageWidth, $imageHeight, $v['width'], $v['height']);
  32. $v['x'] = $x;
  33. $v['y'] = $y;
  34. $text[] = $v['text'];
  35. }
  36. unset($v);
  37. //创建图片的实例
  38. $image = imagecreatefromstring(file_get_contents($imagePath));
  39. foreach($textArr['text'] as $v){
  40. list($r, $g, $b) = $this->getImageColor($imagePath, $v['x'] + $v['width'] / 2, $v['y'] - $v['height'] / 2);
  41. //字体颜色
  42. $color = imagecolorallocate($image, $r, $g, $b);
  43. //阴影字体颜色
  44. $r = $r > 127 ? 0 : 255;
  45. $g = $g > 127 ? 0 : 255;
  46. $b = $b > 127 ? 0 : 255;
  47. $shadowColor = imagecolorallocate($image, $r, $g, $b);
  48. //绘画阴影
  49. imagettftext($image, $v['size'], 0, $v['x'] + 1, $v['y'], $shadowColor, $fontPath, $v['text']);
  50. imagettftext($image, $v['size'], 0, $v['x'], $v['y'] + 1, $shadowColor, $fontPath, $v['text']);
  51. imagettftext($image, $v['size'], 0, $v['x'] - 1, $v['y'], $shadowColor, $fontPath, $v['text']);
  52. imagettftext($image, $v['size'], 0, $v['x'], $v['y'] - 1, $shadowColor, $fontPath, $v['text']);
  53. imagettftext($image, $v['size'], 0, $v['x'] + 1, $v['y'] + 1, $shadowColor, $fontPath, $v['text']);
  54. imagettftext($image, $v['size'], 0, $v['x'] + 1, $v['y'] - 1, $shadowColor, $fontPath, $v['text']);
  55. imagettftext($image, $v['size'], 0, $v['x'] - 1, $v['y'] - 1, $shadowColor, $fontPath, $v['text']);
  56. imagettftext($image, $v['size'], 0, $v['x'] - 1, $v['y'] + 1, $shadowColor, $fontPath, $v['text']);
  57. //绘画文字
  58. imagettftext($image, $v['size'], 0, $v['x'], $v['y'], $color, $fontPath, $v['text']);
  59. }
  60. //删除汉字数组后面4个,实现图片上展示8个字,实际只需点击4个的效果
  61. $textArr['text'] = array_splice($textArr['text'], 3, 4);
  62. $text = array_splice($text, 3, 4);
  63. $_SESSION['clicaptcha_text'] = $textArr;
  64. setcookie('clicaptcha_text', implode(',', $text), time() + 3600, '/');
  65. //生成图片
  66. switch($imageType){
  67. case 1://GIF
  68. header('Content-Type: image/gif');
  69. imagegif($image);
  70. break;
  71. case 2://JPG
  72. header('Content-Type: image/jpeg');
  73. imagejpeg($image);
  74. break;
  75. case 3://PNG
  76. header('Content-Type: image/png');
  77. imagepng($image);
  78. break;
  79. default:
  80. break;
  81. }
  82. imagedestroy($image);
  83. }
  84. public function check($info, $unset = true){
  85. $flag = true;
  86. if(isset($_SESSION['clicaptcha_text'])){
  87. $textArr = $_SESSION['clicaptcha_text'];
  88. list($xy, $w, $h) = explode(';', $info);
  89. $xyArr = explode('-', $xy);
  90. $xpro = $w / $textArr['width'];//宽度比例
  91. $ypro = $h / $textArr['height'];//高度比例
  92. foreach($xyArr as $k => $v){
  93. $xy = explode(',', $v);
  94. $x = $xy[0];
  95. $y = $xy[1];
  96. if($x / $xpro < $textArr['text'][$k]['x'] || $x / $xpro > $textArr['text'][$k]['x'] + $textArr['text'][$k]['width']){
  97. $flag = false;
  98. break;
  99. }
  100. if($y / $ypro < $textArr['text'][$k]['y'] - $textArr['text'][$k]['height'] || $y / $ypro > $textArr['text'][$k]['y']){
  101. $flag = false;
  102. break;
  103. }
  104. }
  105. if($unset){
  106. unset($_SESSION['clicaptcha_text']);
  107. }
  108. }else{
  109. $flag = false;
  110. }
  111. return $flag;
  112. }
  113. //随机生成中文汉字
  114. private function randChars($length = 4){
  115. /**
  116. * 字符串截取,支持中文和其他编码
  117. * @static
  118. * @access public
  119. * @param string $str 需要转换的字符串
  120. * @param string $start 开始位置
  121. * @param string $length 截取长度
  122. * @param string $charset 编码格式
  123. * @param string $suffix 截断显示字符
  124. * @return string
  125. */
  126. function msubstr($str, $start = 0, $length, $charset = 'utf-8', $suffix = true){
  127. if(function_exists('mb_substr')){
  128. $slice = mb_substr($str, $start, $length, $charset);
  129. }else if(function_exists('iconv_substr')){
  130. $slice = iconv_substr($str, $start, $length, $charset);
  131. }else{
  132. $re['utf-8'] = '/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/';
  133. $re['gb2312'] = '/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/';
  134. $re['gbk'] = '/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/';
  135. $re['big5'] = '/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/';
  136. preg_match_all($re[$charset], $str, $match);
  137. $slice = join('', array_slice($match[0], $start, $length));
  138. }
  139. return $suffix ? $slice.'...' : $slice;
  140. }
  141. $chars = '们以我到他会作时要动国产的一是工就年阶义发成部民可出能方进在了不和有大这主中人上为来分生对于学下级地个用同行面说种过命度革而多子后自社加小机也经力线本电高量长党得实家定深法表着水理化争现所二起政三好十战无农使性前等反体合斗路图把结第里正新开论之物从当两些还天资事队批点育重其思与间内去因件日利相由压员气业代全组数果期导平各基或月毛然如应形想制心样干都向变关问比展那它最及外没看治提五解系林者米群头意只明四道马认次文通但条较克又公孔领军流入接席位情运器并飞原油放立题质指建区验活众很教决特此常石强极土少已根共直团统式转别造切九你取西持总料连任志观调七么山程百报更见必真保热委手改管处己将修支识病象几先老光专什六型具示复安带每东增则完风回南广劳轮科北打积车计给节做务被整联步类集号列温装即毫知轴研单色坚据速防史拉世设达尔场织历花受求传口断况采精金界品判参层止边清至万确究书术状厂须离再目海交权且儿青才证低越际八试规斯近注办布门铁需走议县兵固除般引齿千胜细影济白格效置推空配刀叶率述今选养德话查差半敌始片施响收华觉备名红续均药标记难存测士身紧液派准斤角降维板许破述技消底床田势端感往神便贺村构照容非搞亚磨族火段算适讲按值美态黄易彪服早班麦削信排台声该击素张密害侯草何树肥继右属市严径螺检左页抗苏显苦英快称坏移约巴材省黑武培著河帝仅针怎植京助升王眼她抓含苗副杂普谈围食射源例致酸旧却充足短划剂宣环落首尺波承粉践府鱼随考刻靠够满夫失包住促枝局菌杆周护岩师举曲春元超负砂封换太模贫减阳扬江析亩木言球朝医校古呢稻宋听唯输滑站另卫字鼓刚写刘微略范供阿块某功套友限项余倒卷创律雨让骨远帮初皮播优占死毒圈伟季训控激找叫云互跟裂粮粒母练塞钢顶策双留误础吸阻故寸盾晚丝女散焊功株亲院冷彻弹错散商视艺灭版烈零室轻血倍缺厘泵察绝富城冲喷壤简否柱李望盘磁雄似困巩益洲脱投送奴侧润盖挥距触星松送获兴独官混纪依未突架宽冬章湿偏纹吃执阀矿寨责熟稳夺硬价努翻奇甲预职评读背协损棉侵灰虽矛厚罗泥辟告卵箱掌氧恩爱停曾溶营终纲孟钱待尽俄缩沙退陈讨奋械载胞幼哪剥迫旋征槽倒握担仍呀鲜吧卡粗介钻逐弱脚怕盐末阴丰雾冠丙街莱贝辐肠付吉渗瑞惊顿挤秒悬姆烂森糖圣凹陶词迟蚕亿矩康遵牧遭幅园腔订香肉弟屋敏恢忘编印蜂急拿扩伤飞露核缘游振操央伍域甚迅辉异序免纸夜乡久隶缸夹念兰映沟乙吗儒杀汽磷艰晶插埃燃欢铁补咱芽永瓦倾阵碳演威附牙芽永瓦斜灌欧献顺猪洋腐请透司危括脉宜笑若尾束壮暴企菜穗楚汉愈绿拖牛份染既秋遍锻玉夏疗尖殖井费州访吹荣铜沿替滚客召旱悟刺脑措贯藏敢令隙炉壳硫煤迎铸粘探临薄旬善福纵择礼愿伏残雷延烟句纯渐耕跑泽慢栽鲁赤繁境潮横掉锥希池败船假亮谓托伙哲怀割摆贡呈劲财仪沉炼麻罪祖息车穿货销齐鼠抽画饲龙库守筑房歌寒喜哥洗蚀废纳腹乎录镜妇恶脂庄擦险赞钟摇典柄辩竹谷卖乱虚桥奥伯赶垂途额壁网截野遗静谋弄挂课镇妄盛耐援扎虑键归符庆聚绕摩忙舞遇索顾胶羊湖钉仁音迹碎伸灯避泛亡答勇频皇柳哈揭甘诺概宪浓岛袭谁洪谢炮浇斑讯懂灵蛋闭孩释乳巨徒私银伊景坦累匀霉杜乐勒隔弯绩招绍胡呼痛峰零柴簧午跳居尚丁秦稍追梁折耗碱殊岗挖氏刃剧堆赫荷胸衡勤膜篇登驻案刊秧缓凸役剪川雪链渔啦脸户洛孢勃盟买杨宗焦赛旗滤硅炭股坐蒸凝竟陷枪黎救冒暗洞犯筒您宋弧爆谬涂味津臂障褐陆啊健尊豆拔莫抵桑坡缝警挑污冰柬嘴啥饭塑寄赵喊垫丹渡耳刨虎笔稀昆浪萨茶滴浅拥穴覆伦娘吨浸袖珠雌妈紫戏塔锤震岁貌洁剖牢锋疑霸闪埔猛诉刷狠忽灾闹乔唐漏闻沈熔氯荒茎男凡抢像浆旁玻亦忠唱蒙予纷捕锁尤乘乌智淡允叛畜俘摸锈扫毕璃宝芯爷鉴秘净蒋钙肩腾枯抛轨堂拌爸循诱祝励肯酒绳穷塘燥泡袋朗喂铝软渠颗惯贸粪综墙趋彼届墨碍启逆卸航衣孙龄岭骗休借';
  142. for($i = 0; $i < $length; $i++){
  143. $return[] = msubstr($chars, floor(mt_rand(0, mb_strlen($chars, 'utf-8') - 1)), 1, 'utf-8', false);
  144. }
  145. return $return;
  146. }
  147. //随机生成位置布局
  148. private function randPosition($textArr, $imgW, $imgH, $fontW, $fontH){
  149. $return = array();
  150. $x = rand(0, $imgW - $fontW);
  151. $y = rand($fontH, $imgH);
  152. //碰撞验证
  153. if(!$this->checkPosition($textArr, $x, $y, $fontW, $fontH)){
  154. $return = $this->randPosition($textArr, $imgW, $imgH, $fontW, $fontH);
  155. }else{
  156. $return = array($x, $y);
  157. }
  158. return $return;
  159. }
  160. private function checkPosition($textArr, $x, $y, $w, $h){
  161. $flag = true;
  162. foreach($textArr as $v){
  163. if(isset($v['x']) && isset($v['y'])){
  164. //分别判断X和Y是否都有交集,如果都有交集,则判断为覆盖
  165. $flagX = true;
  166. if($v['x'] > $x){
  167. if($x + $w > $v['x']){
  168. $flagX = false;
  169. }
  170. }else if($x > $v['x']){
  171. if($v['x'] + $v['width'] > $x){
  172. $flagX = false;
  173. }
  174. }else{
  175. $flagX = false;
  176. }
  177. $flagY = true;
  178. if($v['y'] > $y){
  179. if($y + $h > $v['y']){
  180. $flagY = false;
  181. }
  182. }else if($y > $v['y']){
  183. if($v['y'] + $v['height'] > $y){
  184. $flagY = false;
  185. }
  186. }else{
  187. $flagY = false;
  188. }
  189. if(!$flagX && !$flagY){
  190. $flag = false;
  191. }
  192. }
  193. }
  194. return $flag;
  195. }
  196. //获取图片某个定点上的主要色
  197. private function getImageColor($img, $x, $y){
  198. list($imageWidth, $imageHeight, $imageType) = getimagesize($img);
  199. switch($imageType){
  200. case 1://GIF
  201. $im = imagecreatefromgif($img);
  202. break;
  203. case 2://JPG
  204. $im = imagecreatefromjpeg($img);
  205. break;
  206. case 3://PNG
  207. $im = imagecreatefrompng($img);
  208. break;
  209. }
  210. $rgb = imagecolorat($im, $x, $y);
  211. $r = ($rgb >> 16) & 0xFF;
  212. $g = ($rgb >> 8) & 0xFF;
  213. $b = $rgb & 0xFF;
  214. return array($r, $g, $b);
  215. }
  216. }
  217. ?>