lukedyson
07-20-2004, 10:25 AM
<?php
$imgname = "/home/simplesh/public_html/images/infocenter.jpeg";
imagecreatefromjpeg($imgname);
$image = imagecreate(350, 100);
imagejpeg($image);
?>
I am trying to include a jpg into an image.
I have this so far, what do i need to do,. to get this to work??
Luke :)
$imgname = "/home/simplesh/public_html/images/infocenter.jpeg";
imagecreatefromjpeg($imgname);
$image = imagecreate(350, 100);
imagejpeg($image);
?>
I am trying to include a jpg into an image.
I have this so far, what do i need to do,. to get this to work??
Luke :)