imagewebp
(PHP 5 >= 5.5.0)
imagewebp — 将 WebP 格式的图像输出到浏览器或文件
说明
bool imagewebp
( resource $image
, string $filename
)
将 image
参数指定的图像以 WebP 格式输出到浏览器或者保存到文件。
参数
image
由图象创建函数(例如imagecreatetruecolor())返回的图象资源。
filename
文件保存的路径,如果未设置或为 NULL
,将会直接输出原始图象流。
返回值
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
范例
Example #1 保存为 WebP 图像文件
<?php
// 创建一个空图像并在其上加入一些文字
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'WebP with PHP', $text_color);
// 保存图像
imagewebp($im, 'php.webp');
// 释放内存
imagedestroy($im);
?>