<?php $img=imagecreatetruecolor(100, 40); $red=imagecolorallocate($img, 255, 0, 0); $green=imagecolorallocate($img, 0, 255, 0); $blue=imagecolorallocate($img, 0, 0, 255); $white=imagecolorallocate($img, 255, 255, 255); $black=imagecolorallocate($img, 0, 0, 0); //生成图片 imagefill($img, 0, 0, $black); //设置验证码 $code=""; for($i=0;$i<5;$i++){ $code.=rand(0,9); } //验证码写到图片中 imagestring($img, 5, 20, 15, $code, $white); //加点儿干扰 for($i=0;$i<10;$i++){ imagesetpixel($img, rand(0,100), rand(0,40), $red); imagesetpixel($img, rand(0,100), rand(0,40), $green); imagesetpixel($img, rand(0,100), rand(0,40), $blue); } //再加点儿干扰 for($i=0;$i<1;$i++){ imageline($img, rand(0,50), rand(0,20), rand(50,100), rand(20,40), $red); imageline($img, rand(0,50), rand(0,20), rand(50,100), rand(20,40), $green); imageline($img, rand(0,50), rand(0,20), rand(50,100), rand(20,40), $blue); } header("Content-type:image/png"); imagepng($img); imagedestroy($img); ?>


常见问题
相关文章
猜你喜欢
- 简易的ORM类 2018-07-09
- PHP 实现文章内容自动分页类 2017-10-23
- 几个简单又实用的PHP函数 2017-09-28
- PHP 非常实用下载远程图片 2017-09-23
- ajax 实现防止重复提交 2017-09-19
- php 实现使用curl模拟百度蜘蛛进行采集 2017-09-18
- php 繁体简体互转类 2017-09-07
- 90个PHP常用接口数据过滤的方法 2017-08-29
- http请求方法封装 2017-07-05
- PHP 防止表单重复提交 2017-07-05