我的验证码有以下代码。图像中的线条已生成,但未显示 4 位数字。我认为有一些问题
imagettftext($image,$font_size,0,15,30,$text_color,'font.TTF',$text);
代码的功能。我尝试使用 $_server['DOCUMENT_ROOT']; 设置字体文件的路径;但没有工作。
这是代码:
<?php
session_start();
header('Content-type: image/jpeg');
$text= $_SESSION['secure'];
$font_size =30;
$image_width= 110;
$image_height=40;
$image=imagecreate($image_width,$image_height);
imagecolorallocate($image, 255, 255, 255);
$text_color = imagecolorallocate($image, 0, 0, 0);
for($x=1; $x<=30; $x++){
$x1 = rand(1,100);
$x2 = rand(1,100);
$y1 = rand(1,100);
$y2 = rand(1,100);
imageline($image, $x1, $x2, $y1, $y2, $text_color);
}
imagettftext($image,$font_size,0,15,30,$text_color,'font.TTF',$text);
imagejpeg($image);
?>