9

我仍在寻找这个问题的答案已经很长时间了。我找到的所有解决方案都围绕着捕捉字体名称,但我很确定这不是我的问题。

好像安装了GD

array(11) {
  ["GD Version"]=>
  string(27) "bundled (**2.0.34 compatible**)"
  ["FreeType Support"]=>
  bool(false)
  ["T1Lib Support"]=>
  bool(false)
  ["GIF Read Support"]=>
  bool(true)
  ["GIF Create Support"]=>
  bool(true)
  ["JPEG Support"]=>
  bool(true)
  ["PNG Support"]=>
  bool(true)
  ["WBMP Support"]=>
  bool(true)
  ["XPM Support"]=>
  bool(true)
  ["XBM Support"]=>
  bool(true)
  ["JIS-mapped Japanese Font Support"]=>
  bool(false)
}

上面你可以看到我的GD支持。我的 PHP 版本是 5.3,我在 Linux 上运行。

我尝试了来自不同网站的几个不同的代码示例,但没有一个有效。ImageString 对我有用,但我需要让imagettftext工作..

这是我现在尝试的最后一个代码-

<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);

// Set the content-type
header('Content-Type: image/png');

// Create the image
$im = imagecreatetruecolor(400, 100) or die("Can't create image!");

// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);

// The text to draw
$text = 'Testing';
// Replace path by your own font path
$font = 'arial.ttf';

// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, 'arial.ttf', $text);

// Add the text
imagettftext($im, 20, 0, 10, 20, $black, 'arial.ttf', $text);

// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>

结果: http ://www.7679679.com/app/test-ansi.php

4

5 回答 5

20

有同样的问题,安装了 FreeType,解决方案是

 $font = "./Arial.ttf"; // <--- put ./ in front of filename
于 2013-02-21T11:52:00.777 回答
8

请注意,您没有安装 Free Type:

["FreeType Support"]=>
  bool(false)

该函数需要 GD 库和 » FreeType 库。

您需要先安装 Free Type 库,然后才能使用此功能。

尝试安装这些包:s freetype, freetype-devel

如果您编译了 PHP,您可以确保在编译期间添加了启用的 freetype:

--with-freetype-dir=/usr/include/freetype2/ --with-freetype

或者,如果您使用诸如 YUM 或 APT-GET 之类的东西,那么安装这些库应该非常简单,并且可以通过 google 快速搜索让您入门。

于 2013-02-21T10:40:41.457 回答
8

好吧,我也有问题

$font='arial.tff'; 

我认为您应该提供$font的绝对路径,例如

$font="c:/windows/fonts/arial.ttf";

我假设您是 Windows 用户。并删除

header('Content-Type:image/png');

得到真正的错误

于 2015-03-15T07:22:30.087 回答
4

我用这个解决方案解决了这个问题:

$fontfile= __DIR__.'/Fontname.ttf';
于 2019-06-12T14:20:54.193 回答
-1

Andrew 是对的,imagettftext 的 php 手册指出 FreeType 需要使用imagettftext,imagettfbox等。大多数人 GD 开发包会自动安装 FreeType:

费多拉/红帽:

yum install gd gd-devel php-gd

Debian/Ubuntu:

apt-get install php5-gd libgd2-xpm libgd2-xpm-dev

此错误可能在您的日志中:

PHP Fatal error:  Call to undefined function imageTTFText()
于 2014-11-03T10:14:21.840 回答