(PHP 5 >= 5.5.0, PHP 7)
imagewebp — 将 WebP 格式的图像输出到浏览器或文件
$image
, string $filename
[, int $quality
= 80
] )
将 image
参数指定的图像以 WebP 格式输出到浏览器或者保存到文件。
image
由图象创建函数(例如imagecreatetruecolor())返回的图象资源。
filename
文件保存的路径,如果未设置或为 NULL
,将会直接输出原始图象流。
quality
quality
范围从0(最低质量,最小文件提交)到100 (最好质量, 最大文件体积.
成功时返回 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);
?>