AARON, , ....:)
php:
header('Content-Type: image/png');
$im = imagecreatetruecolor(300, 100);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
imagefilledrectangle($im, 0, 0, 299, 99, $black);
$font_file = '/usr/share/fonts/corefonts/arial.ttf';
imagefttext($im, 16, 0, 20, 45, $white, $font_file, '" - !", ');
imagefttext($im, 18, 0, 70, 70, $white, $font_file, preg_replace("/\n/", '', file_get_contents("/tmp/noput.dat")).' ');
imagefttext($im, 10, 0, 150, 90, $white, $font_file, "http://putinavotstavku.ru");
imagepng($im);
imagedestroy($im);
, :)))