PHP | imagecreatefromwebp()函数
imagecreatefromwebp()函数是PHP中的一个内置函数,用于从 WEBP 文件或 URL 创建新图像。 WEBP 是一种同时采用有损和无损压缩的图像格式。该图像可以在程序中进一步处理。当您想在从 WEBP 文件加载图像后对其进行编辑时,通常会使用此函数。可以使用imagewebp()函数将图像转换为 WEBP。
句法:
resource imagecreatefromwebp( string $filename )
参数:此函数接受单个参数$filename ,其中包含图像的名称。
返回值:此函数成功时返回图像资源标识符,错误时返回 FALSE。
下面给出的程序说明了PHP中的imagecreatefromwebp()函数:
方案一:
输出:
This will load the content into browser in the form of unsupported text as browsers don’t support WEBP.
方案二:
输出:
参考: https://www. PHP.net/manual/en/函数.imagecreatefromwebp。 PHP