imagettftext无法正常工作 - 根本没有打印图像

时间:2015-01-01 17:59:30

标签: php image imagettftext

我正在尝试使用PHP / imagettftext将文本写入图像。不幸的是,下面的代码不起作用。注意事项:

  • 字体IS在目录中,当我运行一个函数检查文件是否存在时,由PHP检测到。我错过了“.ttf”扩展名,因为如果字体与脚本位于同一目录中,显然你不需要这样做。

  • 如果我注释掉imagettftext,背景图片就没有问题。

  • 我能够成功使用imagestring编写文本。

这是使用imagettftext时显示的内容:error image 有什么想法吗?

 header('Content-type: image/jpeg');

  // Create Image From Existing File
  $png_image = imagecreatefrompng('background.png');

  // Allocate A Color For The Text
  $white = imagecolorallocate($png_image, 255, 255, 255);

  // Set Path to Font File
  $font_path = 'DIN';

  // Set Text to Be Printed On Image
  $text = "This is a sunset!";

  // Print Text On Image
  imagettftext($png_image, 25, 0, 75, 300, $white, $font_path, $text);
  // Send Image to Browser
  imagejpeg($png_image);

  // Clear Memory
  imagedestroy($png_image);

0 个答案:

没有答案