GD and Image 函数
PHP Manual

imagewebp

(PHP 5 >= 5.5.0)

imagewebpOutput an WebP image to browser or file

说明

bool imagewebp ( resource $image , string $filename )

Outputs or save an WebP version of the given image.

参数

image

由图象创建函数(例如 imagecreatetruecolor())返回的图象资源。

filename

文件保存的路径,如果未设置或为 NULL,将会直接输出原始图象流。

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

范例

Example #1 Saving an WebP file

<?php
// Create a blank image and add some text
$im imagecreatetruecolor(12020);
$text_color imagecolorallocate($im2331491);

imagestring($im155,  'WebP with PHP'$text_color);

// Save the image
imagewebp($im'php.webp');

// Free up memory
imagedestroy($im);
?>


GD and Image 函数
PHP Manual