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
// 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);
?>
Example 2:
<?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);
?>
Reference: https://www.php.net/manual/en/function.imagecreatefromjpeg.php