更新:经过测试,TTF 文件似乎在那里。更新:更改为字体文件的相对路径。还是不行。
当我尝试通过 PHP 使用 GD 制作图像时,出现以下错误。
[2009 年 9 月 1 日星期二 19:44:15] [错误] [客户端IP 地址] PHP 警告:imagettftext() [function.imagettftext]:在 /www/vhosts/website.com/htdocs/trial 中找不到/打开字体/TextToImage.class.php 在第 38 行
我更改了字体的路径,因为它给了我同样的错误。我通过将文件放入文件夹中将字体添加到服务器。我错过了什么?
/**
* @name : makeImageF
*
* Function for create image from text with selected font.
*
* @param String $text : String to convert into the Image.
* @param String $font : Font name of the text.
* @param int $W : Width of the Image.
* @param int $H : Hight of the Image.
* @param int $X : x-coordinate of the text into the image.
* @param int $Y : y-coordinate of the text into the image.
* @param int $fsize : Font size of text.
* @param array $color : RGB color array for text color.
* @param array $bgcolor : RGB color array for background.
*
*/
public function makeImageF($text, $font="/www/vhosts/website.com/htdocs/trial/CENTURY.TTF", $W=200, $H=20, $X=0, $Y=0, $fsize=18, $color=array(0x0,0x0,0x0), $bgcolor=array(0xFF,0xFF,0xFF)){
$this->im = @imagecreate($W, $H)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($this->im, $bgcolor[0], $bgcolor[1], $bgcolor[2]); //RGB color background.
$text_color = imagecolorallocate($this->im, $color[0], $color[1], $color[2]); //RGB color text.
imagettftext($this->im, $fsize, $X, $Y, $fsize, $text_color, $font, $text);
}