Open In App

PHP | imagecreatefromjpeg() Function

Last Updated : 30 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
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: [tabby title="php"] php

<?php
  
// Load an image from jpeg URL
$im = imagecreatefromjpeg(
'https://media.geeksforgeeks.org/wp-content/uploads/20200123100652/geeksforgeeks12.jpg');

// View the loaded image in browser
header('Content-type: image/jpg');  
imagejpeg($im);
imagedestroy($im);
?>
Output: Example 2: php
<?php
  
// Load an image from jpeg URL
$im = imagecreatefromjpeg(
'https://media.geeksforgeeks.org/wp-content/uploads/20200123100652/geeksforgeeks12.jpg');

// 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

Next Article

Similar Reads