在imagettftext()中换行文本

时间:2015-01-21 10:10:52

标签: php text explode word-wrap imagettftext

我得到这个脚本从目录中的随机jpg生成图像,从数据库中添加一个随机口号:

<?php

header('Content-type: text/html; charset=utf-8'); 

include '../connect.php';
require_once 'random.php';

$timestamp = time();
$date = date("d.m.Y_G", $timestamp);


$slogan = $mysqli->query("SELECT `text` FROM `slogans` ORDER BY RAND() LIMIT 1");

    $slogan_txt = $slogan->fetch_assoc();



    $bg = get_rand_img('../../images/');
    $imgPath = '../../images/' .$bg;

$text = $slogan_txt[text];
$image = $imgPath; 
$font = "font.TTF";
$font_size = "25";

$image_2 = imagecreatefromjpeg($image);
$black = imagecolorallocate($image_2,0,0,0);

$image_width = imagesx($image_2);  
$image_height = imagesy($image_2);

$text_box = imagettfbbox($font_size,$angle,$font,$text);
$text_width = $text_box[2]-$text_box[0]; // lower right corner - lower left corner
$text_height = $text_box[3]-$text_box[1];

$x = ($image_width/2) - ($text_width/2);
$y = ($image_height/2) - ($text_height/2);

imagettftext($image_2,$font_size,0,$x,$y,$black,$font,$text );

header ("Content-type: image/png");
imagejpeg($image_2);



?>

到目前为止工作正常。

现在有一些口号,一行有很多单词。我需要它们被包裹起来并且也是中心的!

不能在imagettftext()中使用wordwrap,所以我需要以某种方式爆炸它。

我在网上找到了一些功能,但它们没有按预期工作。也许我只是不知道如何将它们与我现有的代码结合起来!

也许有人从自己的项目中得到了一份工作案例?

到目前为止感谢!

3 个答案:

答案 0 :(得分:0)

这会爆炸一个字符串并将文本放入第二个字符串中,如果第一个字符串长于14,我想你可以在此处构建。

$string = "";
$string2 = "";
$name = explode(" ", $name);
foreach ($name as $n) {
    if (strlen($string) + strlen($n) > 14) {
            $string2 .= $n . " ";
        } else {
            $string .= $n . " ";
        }    
}

用于居中文本,您需要执行以下操作: (imagesisex / 2) - 数字* pixelsize

答案 1 :(得分:0)

嗯,现在有效了。

在这里找到了一些有趣的东西,就是这样!只需要添加计算从哪里开始文本(响应imagesize)。

GDtext by stil

谢谢!

答案 2 :(得分:-1)

$text = ucfirst("THE TEXT");
header("Content-Type: image/png");
$im = imagecreatefrompng("image_path_png");
$color = imagecolorallocatealpha($im, 255, 255, 255, "100");
imagefillalpha($im, $color);
$text_colour = imagecolorallocate( $im, 0, 125, 125 );
$fontfile= DIR.'/Walkway_SemiBold.ttf';
$black = imagecolorallocate($im, 0, 0, 0);
imagettftext($im, 70, 0, 60, 460, $black, $fontfile, wordwrap($text,16,"\n"));
imagepng($im);
imagedestroy($im);


function ImageFillAlpha($image, $color) {
  imagefilledrectangle($image, 0, 0, imagesx($image), imagesy($image), $color);
}