Текст водяного знака с использованием imagettftext

Я пытаюсь добавить водяной знак (текст из ввода) в .jpg изображение (от ввода) и определить позицию, это нормально для одной строки, но для большего – начинает перемещаться влево:

Образ

Обновить:

echo $the_box["width"] - 1132, echo $the_box["height"] - 25 

но мое изображение 1024×768.

 if (isset($_POST['TextToUpload'])) { $im = imagecreatefromjpeg($target_file);//jpg. to add watermark(text) $font = 'Roboto-Black.ttf'; // font path $font_size = 25; $font_color = imagecolorresolvealpha($im, 255, 255, 255,$tr1);//tr1 - var to define % of opacity $text = $wt;// wt - text from input $wt = $_POST['TextToUpload']; $lines = explode('|', wordwrap($text, 15, "\n", true)); //15 sumbols - line limit $text_angle=0;//var for angle $text_padding = 10; //some padding $imageX = imagesx($im)+ $text_padding; $imageY = imagesy($im)+ $text_padding; $the_box = calculateTextBox($text, $font, $font_size, $text_angle); $y=$the_box["top"] + ($imageY / 2) - ($the_box["height"] / 2); $x=$the_box["left"] + ($imageX / 2) - ($the_box["width"] / 2); foreach ($lines as $line){ imagettftext($im, $font_size, 0, $x, $y, $font_color, $font, $line); // Increment Y so the next line is below the previous line @$y += 23;} imagepng($im, $target_file); imagedestroy($im); } 

Я нашел много информации об этой проблеме, но использовал imagecreate() .

function calculateTextBox: http://php.net/manual/en/function.imagettfbbox.php#105593

Solutions Collecting From Web of "Текст водяного знака с использованием imagettftext"