imagewebp

(PHP 5 >= 5.4.0, PHP 7)

imagewebpOutput a WebP image to browser or file

Beschreibung

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

Outputs or saves a WebP version of the given image.

Parameter-Liste

image

Eine von den verschiedenen Erzeugungsfunktionen wie imagecreatetruecolor() gelieferte Grafikressource.

to

Der Pfad unter dem das Bild gespeichert werden soll. Ist dies nicht gesetzt oder NULL wird der rohe Bilddatenstrom direkt ausgegeben.

quality

quality ranges from 0 (worst quality, smaller file) to 100 (best quality, biggest file).

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Achtung

However, if libgd fails to output the image, this function returns TRUE.

Beispiele

Beispiel #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);
?>