php生成中文汉字验证码代码

代码语言:php

所属分类:验证码

代码描述:php生成中文验证码代码

代码标签: 汉字 验证码 php

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php
 
	session_start();
	//创建一张宽100高30的图像
	$image = imagecreatetruecolor(200, 60);
	//为$image设置背景颜色为白色
	$bgcolor = imagecolorallocate($image, 255, 255, 255);
	//填充背景颜色
	imagefill($image, 0, 0, $bgcolor);
 
	//生成4个随机数
/*	for($i=0; $i<4; $i++){
		//设置字体为6
		$fontsize=6;
		//设置背景颜色为随机颜色
		$fontcolor=imagecolorallocate($image, rand(0,120), rand(0, 120), rand(0,120));
		//生成随机数字
		$fontcontent=rand(0, 9);
		//控制数字出现的位置x->left y->top
		$x=($i*100/4)+rand(5, 10);
		$y=rand(5, 10);
		imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);
	}
*/
 
	//引入一个字体文件使之能够显示中文下面有详细截图展示
	$fontface="/data/wwwroot/default/SIMFANG.TTF";
	$str="我䃽心于死来说羊补牢经而能褟庆幸自己没在那敲响实公共警钟底应该何做系乎寥成为话题密问.........完整代码请登录后点击上方下载按钮下载查看

网友评论0