- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有这个代码:
$im = imagecreatetruecolor(70, 25);
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagecolortransparent($im, imagecolorallocate($im, 0,0,0));
$font = 'font.ttf';
imagettftext($im, 20, 0, 3, 22, $white, $font, $randomnr);
header("Expires: Wed, 1 Jan 1997 00:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header ("Content-type: image/png");
imagepng($im);
imagedestroy($im);
就像我在标题中所说的那样,它在文本周围创建了一些黑边。我还尝试了 imagealphablending
/imagesavealpha
并且得到了相同的结果(我在透明背景上使用了白色文本,以便您可以看到我在说什么) :
更新:解决方案是:
$im = imagecreatetruecolor(70, 25);
$font = 'font.ttf';
//antialiasing:
$almostblack = imagecolorallocate($im,254,254,254);
imagefill($im,0,0,$almostblack);
$black = imagecolorallocate($im,0,0,0);
imagecolortransparent($im,$almostblack);
imagettftext($im, 20, 0, 3, 22, $white, $font, $randomnr);
...
最佳答案
像这样的东西应该可以完成工作:
$width = 70;
$height = 25;
$im = imagecreatetruecolor($width, $height);
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 221, 221, 221);
imageSaveAlpha($im, true);
imageAlphaBlending($im, false);
$transparent = imageColorAllocateAlpha($im, 0, 0, 0, 127);
imagefilledrectangle($im, 0, 0, $width-1, $height-1, $transparent);
imageAlphaBlending($im, true);
$font = 'font.ttf';
$randomnr = "1234";
imagettftext($im, 20, 0, 3, 22, $white, $font, $randomnr);
header("Expires: Wed, 1 Jan 1997 00:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header ("Content-type: image/png");
imagepng($im);
imagedestroy($im);
关于PHP imagettftext 在透明背景上创建黑边,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12672920/
$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
我是一名优秀的程序员,十分优秀!