<?php
session_start();
$chars="23456789ABCDEFGHJKLMNPRSTWXY";
$string="";
for($i=0;$i<5;$i++){
$rand=rand(0,strlen($chars)-1);
//echo $rand."<br>";
$string.=substr($chars,$rand,1);
}
//echo $string;
header("content-type:image/png");
$image=imagecreate(100,40);
$bgcolor=imagecolorallocate($image,rand(100,200),rand(100,200),rand(100,200));
//$textcolor=imagecolorallocate($image,rand(200,255),rand(200,255),rand(200,255));
//imagestring($image,5,10,10,$string,$textcolor);
for($i=0;$i<100;$i++){
$dotColor=imagecolorallocate($image,rand(0,222),rand(0,255),rand(0,255));
$x=rand(0,100);
$y=rand(0,40);
imagesetpixel($image,$x,$y,$dotColor);
}
for($i=0;$i<strlen($string);$i++){
//设置字体颜色
$frontColor=imagecolorallocate($image,rand(0,120),rand(0,120),rand(0,120));
//把字符写入图形中
imagestring($image,10,rand(20*$i+1,20*$i+10),rand(10,20),substr($string,$i,1),$frontColor);
}
$_SESSION["yanzheng"]=$string;
imagepng($image);
imagedestroy($image);
?>
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
yanzhengma.rar (1个子文件)
yanzhengma.php 1KB
共 1 条
- 1
资源评论
- userdhf2012-06-21可以使用,但是在调用页面echo session的时候要比图片慢半拍
- shenmi572013-03-04可以使用的
niyanfei
- 粉丝: 0
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功