GD ve Resim İşlevleri
PHP Manual

imagewebp

(PHP 5 >= 5.5.0)

imagewebpOutput an WebP image to browser or file

Açıklama

bool imagewebp ( resource $image , string $filename )

Outputs or save an WebP version of the given image.

Değiştirgeler

resim

imagecreatetruecolor() gibi bir resim oluşturma işlevinden dönen bir resim verisi.

filename

The path to save the file to. If not set or NULL, the raw image stream will be outputted directly.

Dönen Değerler

Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.

Örnekler

Örnek 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);
?>


GD ve Resim İşlevleri
PHP Manual