(PHP 5 >= 5.4.0, PHP 7)
imagewebp — Output a WebP image to browser or file
Outputs or saves a WebP version of the given image
.
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).
Gibt bei Erfolg TRUE
zurück. Im Fehlerfall wird FALSE
zurückgegeben.
However, if libgd fails to output the image, this function returns TRUE
.
Beispiel #1 Saving an WebP file
<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'WebP with PHP', $text_color);
// Save the image
imagewebp($im, 'php.webp');
// Free up memory
imagedestroy($im);
?>