imagecreatefromwebp()函数是PHP中的内置函数,用于从WEBP文件或URL创建新图像。 WEBP是一种采用有损和无损压缩的图像格式。该图像可以在程序中进一步处理。从WEBP文件加载图像后要编辑图像时,通常使用此函数。可以使用imagewebp()函数将图像转换为WEBP。
用法:
resource imagecreatefromwebp( string $filename )
参数:该函数接受单个参数$filename,该参数保存图像的名称。
返回值:成功时此函数返回图像资源标识符,错误时返回FALSE。
下面给出的程序说明了PHP中的imagecreatefromwebp()函数:
程序1:
<?php
// Load an WEBP image from local folder
// You can convert any image to WEBP using
// imagewebp() function or online convertors
$im = imagecreatefromwebp('./geeksforgeeks.webp');
// View the loaded image in browser
imagewebp($im);
imagedestroy($im);
?>
输出:
This will load the content into browser in the form of unsupported text as browsers don’t support WEBP.
程序2:
<?php
// Load an WEBP image from local folder
// You can convert any image to WEBP using
// imagewebp() function or online convertors
$im = imagecreatefromwebp('./geeksforgeeks.webp');
// Output the image by converting it into PNG
header('Content-type:image/png');
imagepng($im);
imagedestroy($im);
?>
输出:
参考: https://www.php.net/manual/en/function.imagecreatefromwebp.php
相关用法
- p5.js pow()用法及代码示例
- p5.js second()用法及代码示例
- PHP each()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- CSS var()用法及代码示例
- p5.js day()用法及代码示例
- CSS url()用法及代码示例
- p5.js hue()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP Ds\Map put()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagecreatefromwebp() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。