当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagecreatefromwebp()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagecreatefromwebp() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。