- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
s-6ren">
我一直在寻找这个问题的答案已经很长时间了..我找到的所有解决方案都是围绕捕获字体名称,但我很确定这不是我的问题。
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);
?>
最佳答案
有同样的问题,安装了FreeType,解决方案是
$font = "./Arial.ttf"; // <--- put ./ in front of filename
关于PHP - imagettftext 不工作并且安装了 GD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15000063/
$app_id, 'secret' => $app_secret, 'cookie' => true )); $user = $facebook->getUser()
我想使用以下方式将我添加到图像中的文本居中: imagettftext($image, 85, 0, 250, 350, $color, $font, $txt ); 我试过这样的: $fontwid
我对 PHP 函数 imagettftext 有疑问。我有从带有文本信息的数据库生成卡片图像的代码。对于一些卡片,我有问题 - 单词是相互重叠的( like here )。 我的代码看起来像这样(字体
我已经成功地将文本写入我的 img 并正确放置它,但是我遇到的问题是增加字体大小会使文本从图像中消失。 所以我知道我可以通过简单地增加写入屏幕的文本的行高来实现我想要的外观。我似乎找不到任何关于是否/
我有这个代码: $im = imagecreatetruecolor(70, 25); $white = imagecolorallocate($im, 255, 255, 255); $grey =
我正在训练我的 PHP 技能来生成图像。我只需要一件不起作用的东西。我不认为这是可能的我想要的方式,但应该有另一种方式。我已经拥有的代码是这样的: $maxWidth) { $lin
我正在尝试使用 imagettftext 创建带有文本的图像。它告诉我警告:imagettftext():C:\xampp\htdocs\recentpost.php 中第 32 行的无效字体文件名。
有没有人有绘制具有指定字母间距的 ttf 字符串(imagettftext)的函数? 我找不到任何内置的 GD 函数,所以我认为应该逐个字母添加一些恒定宽度。 也许有人已经有这样的功能:) 附言。最好
使用 example from php.net我收到警告,图像未正确呈现。我像这样提供 .ttf 文件的完整路径:/var/www/public/myfont.ttf PHP Warning: im
基本上,当我绘制文本时,它最终会像这样变成黑色:http://i.stack.imgur.com/z675F.png而不是我在 PHP 和函数中分配的颜色。代码: $finalImage =
我正在用 php 创建一个图像形式的字体大小、字体系列、字体颜色。在我收到新要求之前,一切都很好。我正在使用 ttf 文件并将特定 ttf 文件的路径作为参数传递到 imagettftext 函数中。
我写信是为了使用 PHP 将文本打印到图像上。但是,函数 imagettftext() 使用基线,而我需要文本垂直居中。 所以,我要么需要一种方法来打印文本,其中 y 不是从顶部到基线的距离,而是从边
我正在尝试使用 imagettftext,但显然它在 GD2 中使用点大小,但我所有的大小都以像素为单位,是否有任何其他我可以使用的函数,或任何将像素转换为点的方法? 最佳答案 如果你 super 懒
我在使用 imagettftext() 渲染文本时遇到了一些问题;不知何故,它只是显示填充的矩形。完全没有错误。 http://postimage.org/image/k61c8xi0n/ PHP 版
使用 imagettftext PHP GD 库中的函数,只能在图像上绘制左对齐的文本。至少看起来是这样,也许我错过了一些东西。 如何控制绘制到图像上的文本的对齐方式?即左/中/右(/合理 - 没有必
我在由 PHP GD 库创建的图像中使用 Verdana 字体。 imagettftext($image, $fontSize, 0, 70, $y, $color, $font, $username
我正在使用 php 创建透明文本 -> png 图像,到目前为止一切顺利。唯一的问题是,由于宽度固定,我希望能够使文本自动换行。或者能够在文本中插入分界线。有没有人有任何exp这样做?这是我的代码..
我几乎可以肯定这是行不通的愚蠢原因,但我就是想不通。我只是想用 imagettftext 打印出一些文本作为图形,但我无法显示这些文字。这是在 GoDaddy 服务器上,所以我不能控制一切,但这里是
我一直在寻找这个问题的答案已经很长时间了..我找到的所有解决方案都是围绕捕获字体名称,但我很确定这不是我的问题。 GD好像安装好了 array(11) { ["GD Version"]=> s
我的问题是,如何给图片中的所有文字加下划线? 代码: function createImage($text) { $text .= "\n"; $text = wordwrap($te
我是一名优秀的程序员,十分优秀!