vincent, i appreciate you help tremoundsly, but i am still a bit confused. if i have this code:
$im = ImageCreate(800, 300);
ImageFill($im, 0, 0, $back_color);
ImageString($im, $line1size, $begin1, 20, "$line1text", $string_color);
Imagejpeg($im);
And i have a variable $name, that the user inputted for this image. I want to save the image in the directory /usr/local/www/gift_certs/ with $name as its name.
I read everything on Imagecreatefromgpeg, but it did not help me.