imagewebp

(PHP 5 >= 5.4.0, PHP 7)

imagewebp�� WebP ��ʽ��ͼ���������������ļ�

˵��

imagewebp ( resource $image [, mixed $to = NULL [, int $quality = 80 ]] ) : bool

�� image ����ָ����ͼ���� WebP ��ʽ�������������߱��浽�ļ���

����

image

��ͼ�󴴽�����(����imagecreatetruecolor())���ص�ͼ����Դ��

to

�ļ������·�������δ���û�Ϊ NULL������ֱ�����ԭʼͼ������

quality

quality ��Χ��0�������������С�ļ��������100 ���������, ����ļ��������

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

������־

�汾 ˵��
5.4.0 ֧�ְ� resource ����Ϊ to �������롣

����

Example #1 ����Ϊ WebP ͼ���ļ�

<?php
// ����һ����ͼ�������ϼ���һЩ����
$im imagecreatetruecolor(12020);
$text_color imagecolorallocate($im2331491);

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

// ����ͼ��
imagewebp($im'php.webp');

// �ͷ��ڴ�
imagedestroy($im);
?>