![]() |
VOOZH | about |
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);
?>