2

我正在创建带有一些文本的图像,当旋转为 0 时它很好,但是rotation is > 0由于文本对齐,图像看起来很糟糕,因为默认情况下对齐是左对齐。因为每个值都是动态的,所以我们无法修复它,请帮助我。

$message = 'Thanks, Deep, for making time to have a coffee today Purushottam';
$no_of_characters_line = $temp_data['no_of_characters_line'];
$lines = explode('|', wordwrap($message, $no_of_characters_line, '|'));
// Starting Y position and X position
$y = $temp_data['position_from_top'];
$x = $temp_data['position_from_left'];
$font_size = $temp_data['font_size'];
$rotation_angle = $temp_data['rotation'];
$line_height = $temp_data['line_height'];   

foreach ($lines as $line)
    {
    imagettftext($im, $font_size,$rotation_angle, $x, $y, $black, $font, $line);
    // Increment Y so the next line is below the previous line
    $y += $line_height;
    }

我还附上了示例模板。在此处输入图像描述

4

1 回答 1

0

您可以使用imagettfbbox来计算以像素为单位的字符串大小。然后,使用宽度,您将能够计算将文本向右对齐所需的偏移量。此外,请查看imagettftext文档以获取一些文本对齐示例。

于 2013-04-09T19:20:27.010 回答