imagefontheight(font)获取字体的高度: imagefontwidth(font)获取字体的宽度: strlen(字符串)//获取字符串的长度 imagesx(image) //获取画布的宽度 imagesy(image) //获取画布的高度
最后运行结果
再次完善(和html代码结合起来)
Html代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form method='post' action=''> <table rules="all" cellpadding="10"> <tr> <th colspan="2">请输入信息</th> </tr> <tr> <th>姓名:</th> <th><input type="text"></input></th> </tr> <tr> <th>密码:</th> <th><input type="password"></input></th> </tr> <tr> 555556 <th>验证码</th> <th><input type = 'text' name = 'checkcode'></input><img src="https://www.jb51.net/article/21.php"></th> </tr> <tr> <th colspan="2"><input type="submit" value="提交"></input></th> </tr> </table> </form> </body> </html>
理解;
最后结果截图