imagejpeg()函数是PHP中的内置函数,用于向浏览器或文件显示图像。此函数的主要用途是在浏览器中查看图像,将任何其他图像类型转换为JPEG并更改图像质量。
用法:
bool imagejpeg( resource $image, int $to, int $quality )
参数:此函数接受上述和以下所述的三个参数:
- $image:它指定要处理的图像资源。
- $to (Optional):它指定将文件保存到的路径。
- $quality (Optional):它指定图像的质量。
返回值:如果成功,此函数将返回TRUE,否则将返回FALSE。
以下示例说明了PHP中的imagejpeg()函数:
范例1:在此示例中,我们将在浏览器中查看图像。
<?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 using imagejpeg() function
header('Content-type:image/jpg');
imagejpeg($im);
imagedestroy($im);
?>
输出:
范例2:在此示例中,我们将PNG转换为JPEG。
<?php
// Load an image from PNG URL
$im = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Convert the image into JPEG using imagejpeg() function
imagejpeg($im, 'converted.jpg');
imagedestroy($im);
?>
输出:
This will save the JPEG version of image in the same folder where your PHP script is.
范例3:在此示例中,我们将更改图像的质量。
<?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 using imagejpeg() function
header('Content-type:image/jpg');
// Decrease the quality of image to 2
imagejpeg($im, null, 2);
imagedestroy($im);
?>
输出:
参考: https://www.php.net/manual/en/function.imagejpeg.php
相关用法
- PHP next()用法及代码示例
- CSS url()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- p5.js pow()用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- CSS var()用法及代码示例
- p5.js day()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- p5.js hue()用法及代码示例
- p5.js value()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagejpeg() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。