imagettftext():找不到/打开字体错误消息

时间:2018-01-02 13:34:01

标签: php image fonts captcha

我试图在表单中读取验证码图像。

以下是表单代码:

<form class="login" method="POST" action="">
    <p class="title">Are you human?</p>
    <div id="captchaimage">
        <img src="generate.php">
    </div>
    <input type="text" name="scr" size="6" placeholder="Write what you see here" autofocus/>
    <input class="submititon" type="submit" value="Submit" name="submit"></input>
</form>

这是generate.php文件:

<?php 
session_start();
//header('Content-type: image/jpeg');
$text = $_SESSION['scr'];
$font_size = 26;
$image_width = 100;
$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);
    $y1 = rand(1, 100);
    $x2 = rand(1, 100);
    $y2 = rand(1, 100);

    imageline($image, $x1, $y1 ,$x2 ,$y2, $text_color);
}

imagettftext($image, $font_size, 0, 15, 30, $text_color, 'font.ttf', $text);
imagejpeg($image);
?>

正如您所看到的,我已将header()注释掉,以查看此页面返回的错误。错误是这样的:

警告:imagettftext():无法在第25行找到/打开字体

第25行:

imagettftext($image, $font_size, 0, 15, 30, $text_color, 'font.ttf', $text);

我不知道为什么会发生此错误,因为font.ttf文件正确放置在同一目录中。

那么这里发生了什么?!

3 个答案:

答案 0 :(得分:1)

基于Maicon Perin的答案。

    $image = Image::canvas(750, 300, '#f3f3f3');
    $image->text($title, 375, 150, function($font) {
        $font->file(realpath('fonts/font-file.ttf'));
        $font->size(44);
        $font->color('#ffffff');
        $font->align('center');
        $font->valign('center');
    });

您只需要向| |添加字体文件即可。 public / fonts / font-file.ttf

答案 1 :(得分:0)

代替使用; 'font.ttf'

将其更改为=> './font.ttf'

答案 2 :(得分:-1)

您需要提供字体文件的真实路径。试试这个:

realpath('path/to/you/font.ttf');

这种方法对我有用。