The image is not coming from a db. The script makes the image itself:
<?php
header('Content type: image/jpeg');
$background = imagecreatefromjpeg("background.jpg");
imagettftext($background,19,0,83,160,$color,$font,$text);
imagejpeg($background);
imagedestroy($background);
?>
Now I want to...