<?php header("Content-type: image/jpeg"); $im = imagecreatefromjpeg("123.jpeg"); $text = "Welcome!"; $fout = "arial.ttf"; $color = imagecolorallocate($im, 255, 0, 0); imagettftext($im,11,0,0,0,$color,$font,$text); imagejpeg($im); ?>