(PHP 5 >= 5.4.0, PHP 7)
imagewebp — �� WebP ��ʽ��ͼ���������������ļ�
�� image
����ָ����ͼ���� WebP ��ʽ�������������߱��浽�ļ���
image
��ͼ������(����imagecreatetruecolor())���ص�ͼ����Դ��
to
�ļ������·�������δ���û�Ϊ 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);
?>