最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php生成图片验证码
时间:2022-07-02 09:13:45 编辑:袖梨 来源:一聚教程网
起初,有一个在php.ini 看看gd库是不是开启的,
下一步,我们会考虑每一个细节的图像生成步骤。
//Send a generated image to the browser
create_image();
exit();
function create_image()
{
//Let's generate a totally random string using md5
$md5 = md5(rand(0,999));
//We don't need a 32 character long string so we trim it down to 5
$pass = substr($md5, 10, 5);
//Set the image width and height
$;
$;
//Create the image resource
$image = ImageCreate($width, $height);
//We are making three colors, white, black and gray
$white = ImageColorAllocate($image, 255, 255, 255);
$black = ImageColorAllocate($image, 0, 0, 0);
$grey = ImageColorAllocate($image, 204, 204, 204);
//Make the background black
ImageFill($image, 0, 0, $black);
//Add randomly generated string in white to the image
ImageString($image, 3, 30, 3, $pass, $white);
//Throw in some lines to make it a little bit harder for any bots to
break
ImageRectangle($image,0,0,$width-1,$height-1,$grey);
imageline($image, 0, $height/2, $width, $height/2, $grey);
imageline($image, $width/2, 0, $width/2, $height, $grey);
//Tell the browser what kind of file is come in
header("Content-Type: image/jpeg");
//Output the newly created image in jpeg format
ImageJpeg($image);
//Free up resources
ImageDestroy($image);
}
?>
调用方法
src="generate_image.php" >
相关文章
- 地狱即我们时间循环怎么关闭 时间循环进入及关闭方法 09-18
- 无主之地4全玉米卷饼收集攻略 玉米卷饼全位置一览 09-18
- 地狱即我们按键怎么操作 全按键功能一览 09-18
- 禁闭求生2怎么做灼热头盔 投弹甲虫套灼热头盔制作教程 09-18
- 无主之地4玉米卷饼戴夫位置在哪 玉米卷饼戴夫位置攻略 09-18
- 禁闭求生2蝴蝶套配方是什么 蝴蝶套护甲制作材料一览 09-18