(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.
resimimagecreatetruecolor() gibi bir resim oluşturma işlevinden dönen bir resim verisi.
toDosyanın kaydedileceği yol veya işlev döndüğünde
kendiliğinden kapanan açık bir akım kaynağı. NULL atanırsa veya hiçbir şey
atanmazsa doğrudan ham resim akımı çıktılanır.
quality
quality ranges from 0 (worst
quality, smaller file) to 100 (best quality, biggest file).
Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.
Ancak, libgd resmi çıktılamakta başarısız olursa bu işlev TRUE
döndürür.
Örnek 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);
?>