我想从textearea为简报创建文本图像。 所以,它将有超过1行。 我正在考虑使用imagettfbbox计算总宽度和高度(所有行),然后使用imagettftext写入图像。 问题是,我注意到字体大小越多,向文本中添加“imagettftext”的填充越多。 imagettfbbox告诉我关于填充的任何信息。 returing数组值[0]和[1]都是ALLWAYS = -1。
谢谢!
答案 0 :(得分:0)
您可以使用GD或ImageMagick执行此操作,我将使用GD发布一个基本示例。
<?php
// Set the content-type
header('Content-Type: image/png');
// Create the image
$im = imagecreatetruecolor(400, 30);
// 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 = 'A simple text string';
// Replace path by your own font path
$font = 'tahoma.ttf';
// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>
现在要格式化此字符串,您可以使用strlen()返回单个字符串的长度,并根据需要将其传播到您的函数。对于更流线型的方法,请考虑使用ImageMagick,因为它支持TextAlignment等等。
<?php
define("LEFT", 1);
define("CENTER", 2);
define("RIGHT", 3);
$w = 400;
$h = 200;
$gradient = new Imagick();
$gradient->newPseudoImage($w, $h, "gradient:red-black");
$draw = new ImagickDraw();
$draw->setFontSize(12);
$draw->setFillColor(new ImagickPixel("#ffffff"));
$draw->setTextAlignment(LEFT);
$draw->annotation(150, 30, "Hello World1!");
$draw->setTextAlignment(CENTER);
$draw->annotation(150, 50, "Hello World2!");
$draw->setTextAlignment(RIGHT);
$draw->annotation(150, 70, "Hello World3!");
$draw->setFillColor(new ImagickPixel("#0000aa"));
$x1 = 150;
$x2 = 150;
$y1 = 0;
$y2 = 200;
$draw->rectangle($x1, $y1, $x2, $y2);
$gradient->drawImage($draw);
$gradient->setImageFormat("png");
header("Content-Type: image/png");
echo $gradient;
?>
我希望这会对你有所帮助。我可以详细说明您可能遇到的任何问题。