Kód: Vybrať všetko
<?php
header ("Content-type: image/jpeg");
$width = 50; $height = 50;
$image = ImageCreate ($width, $height);
$background_color = ImageColorAllocate ($image, 255, 255, 255);
$font_size = 5; $col = 1;
$text = "Váš text";
$text_color = ImageColorAllocate ($image, 0, 0, 0);
ImageString ($image, $font_size, $col, $row, $text, $text_color);
ImageJpeg ($image);
?>