{% else-1 %}
Создаем картинку в PHP*

                        
<?php

$text='Privet!'; $im = imagecreate(60, 20); imagecolorallocate($im, 255, 255, 255); $color = imagecolorallocate($im, 0, 125, 0); imagestring($im, 4, 4, 2, $text, $color); header('Content-type: image/png'); imagepng($im);

?>
0 18 0
Без комментариев...