<?
$image = @imagecreatefromjpeg("1.jpg");
$text = $_GET['text'];
$font = "1.ttf";
$color = imagecolorallocate($image, 0, 0, 0);
header("Content-type: image/jpeg");
imagestring($image, 0, 200, 100, $text, $color);
imagepng($image);
imagedestroy($image);
?>