PHP无法找到/打开字体

时间:2017-10-27 08:36:57

标签: php fonts

我正在尝试在图像上写文本,但是我收到错误:PHP警告:imagettftext():无法在第12行的/var/www/html/anti-bot/image.php中找到/打开字体。

这是我的代码:

<?php
session_start();
header("Content-Type: image/png");
$text = rand(1000,1000000);
$_SESSION['code']=$text;
$img= imagecreatefromjpeg("bg.jpg");
$font = 'arial.ttf';
$R = rand(0,100);
$G = rand(0,100);
$B = rand(0,100);
$TxtColor = imagecolorallocate($img,$R,$G,$B);
imagettftext($img,rand(40,45),rand(0,1),rand(10,70),rand(38,50),$TxtColor,$font,$text);
imagepng($img);
imagedestroy($img);

?>

我试过了:

$font = 'var/www/html/anti-bot/arial.ttf";
$font = 'var/www/html/anti-bot/arial";
$font = 'arial.ttf";
$font = 'arial";

所有文件都在同一目录中,var / www / html / anti-bot

1 个答案:

答案 0 :(得分:0)

你必须给出阅读字体的绝对路径。

所以给出如下字体路径:

$font = "/var/www/html/anti-bot/arial.ttf";

/之前注意var从根目录

获取路径