(PHP 5 >= 5.5.0, PHP 7)
imagewebp — Output a WebP image to browser or file
Outputs or save an WebP version of the given image
.
resim
imagecreatetruecolor() gibi bir resim oluşturma işlevinden dönen bir resim verisi.
to
Dosyanın kaydedileceği yer. NULL
atanırsa dosyanın içeriği çı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.
Ö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);
?>