<?PHP
header('Content-type: image/jpeg');




$jeweleryPic = imagecreatefromjpeg('./0002.jpg');

$colorEx = 'FF0000';

$imgColor[0] = hexdec(substr($colorEx, 0, 2));
$imgColor[1] = hexdec(substr($colorEx, 2, 2));
$imgColor[2] = hexdec(substr($colorEx, 4, 2));

$textColor = imagecolorallocate($jeweleryPic, $imgColor[0], $imgColor[1], $imgColor[2]);

imagettftext($jeweleryPic, 50, 0, 34, 80, $textColor, './verdana.ttf', 'S O L D');

imagejpeg($jeweleryPic, null, 100);
?>
