PHP – imagettftext无法正常工作并安装了GD

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了PHP – imagettftext无法正常工作并安装了GD脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
这是长时间,我仍然在寻找这个问题的答案..
我找到的所有解决方案都围绕着字体名称,但我很确定这不是我的问题.

它看起来像是安装了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);
$grey = imagecolorallocate($im,128,128);
$black = imagecolorallocate($im,0);
imagefilledrectangle($im,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,11,21,$grey,'arial.ttf',$text);

// Add the text
imagettftext($im,10,$black,$text);

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

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

有同样的问题,安装了FreeType,解决方案是
$font = "./Arial.ttf"; // <--- put ./ in front of filename

脚本宝典总结

以上是脚本宝典为你收集整理的PHP – imagettftext无法正常工作并安装了GD全部内容,希望文章能够帮你解决PHP – imagettftext无法正常工作并安装了GD所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。