Open In App

PHP | imagecreatefromjpeg() Function

The imagecreatefromjpeg() function is an inbuilt function in PHP which is used to create a new image from JPEG file or URL. This image can be further worked upon in the program.

Syntax:



resource imagecreatefromjpeg( string $filename )

Parameters: This function accepts a single parameter, $filename which holds the name of image
Return Value: This function returns an image resource identifier on success, FALSE on errors.

Below examples illustrate the imagecreatefromjpeg() function in PHP:



Example 1:




<?php
    
// Load an image from jpeg URL
$im = imagecreatefromjpeg(
  
// View the loaded image in browser
header('Content-type: image/jpg');  
imagejpeg($im);
imagedestroy($im);
?>

Output:

Example 2:




<?php
    
// Load an image from jpeg URL
$im = imagecreatefromjpeg(
  
// Flip the image
imageflip($im, 1);
  
// View the loaded image in browser
header('Content-type: image/jpg');  
imagejpeg($im);
imagedestroy($im);
?>

Output:

Reference: https://www.php.net/manual/en/function.imagecreatefromjpeg.php

Article Tags :