(PHP 5 >= 5.5.0)
imagecreatefromwebp — Crea una nuova immagine da un file o una URL
$filename
)imagecreatefromwebp() returns an image identifier representing the image obtained from the given filename.
È possibile utilizzare una URL come un nome di file con questa funzione se fopen wrappers è stata abilitata. Vedere fopen() per maggiori informazioni su come specificare i nomi di file. Vedere Supported Protocols and Wrappers per i link verso le informazioni sulle capacità dei vari wrapper, note sul loro uso, informazioni sulle variabili predefinite che forniscono.
filename
Path to the WebP image.
Restituisce un identificatore di risorsa immagine, FALSE
in caso di errore.
Example #1 Convert an WebP image to a jpeg image using imagecreatefromwebp()
<?php
// Load the WebP file
$im = imagecreatefromwebp('./example.webp');
// Convert it to a jpeg file with 100% quality
imagejpeg($im, './example.jpeg', 100);
imagedestroy($im);
?>