Mega Code Archive

 
Categories / Php / Graphics
 

Creating an Image from an Existing Image

Loading an Existing Image  <?php      $animage = imagecreatefromjpeg ("myImage.jpg");      imagejpeg ($animage);      header ("Content-type: image/jpeg");      imagedestroy ($animage);  ?>