Kod
<?php
header("Content-type: image/jpeg");
$imgPath = 'tlo.jpg';
$image = imagecreatefromjpeg($imgPath);
$color = imagecolorallocate($image, 255, 255, 255);
$string = "jakis tekst";
$fontSize = 3;
$x = 125;
$y = 195;
imagestring($image, $fontSize, $x, $y, $string, $color);
imagejpeg($image);
?>
header("Content-type: image/jpeg");
$imgPath = 'tlo.jpg';
$image = imagecreatefromjpeg($imgPath);
$color = imagecolorallocate($image, 255, 255, 255);
$string = "jakis tekst";
$fontSize = 3;
$x = 125;
$y = 195;
imagestring($image, $fontSize, $x, $y, $string, $color);
imagejpeg($image);
?>
Dostaję takie coś
