This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
luowei_exam/img_code_1.php
2025-01-09 11:57:41 +08:00

20 lines
526 B
PHP

<?php
//GD
//phpinfo();
//登录验证码
session_start();
header("Content-type: image/png; charset=utf-8");
//创建一个图片
$image = imagecreate(120,30);
//定义背景颜色
$black = imagecolorallocate($image,0, 0, 0);//reb 000代表黑
//定义前景颜色
$white = imagecolorallocate($image,255, 255, 255);
imagefill($image, 0, 0, $black );//向图片中填充背景
$string = $_GET['img_code'];
//把文字写到图片中
imagestring( $image, 5, 10, 8, $string, $white);
//生成png格式图形
imagepng( $image );