Answer the question
In order to leave comments, you need to log in
How to put text on a picture with an eyeliner?
I overlay text on the image like this:
<?php
$img = "./test.jpg"; // Ссылка на файл
$font = "./Impact.ttf"; // Ссылка на шрифт
$font_size = 24; // Размер шрифта
$degree = 0; // Угол поворота текста в градусах
$text = "Hello, World!"; // Ваш текст
$y = 100; // Смещение сверху (координата y)
$x = 200; // Смещение слева (координата x)
$pic = imagecreatefromjpeg($img); // Функция создания изображения
$color = imagecolorallocate($pic, 0, 0, 0); // Функция выделения цвета для текста
imagettftext($pic, $font_size, $degree, $x, $y, $color, $font, $text); // Функция нанесения текста
imagepng($pic, "./".time().".jpg"); // Сохранение рисунка
imagedestroy($pic); // Освобождение памяти и закрытие рисунка
?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question