(PHP 5 >= 5.5.0, PHP 7)
imagecreatefromwebp — Cria uma nova imagem a partir de arquivo ou URL
$filename
)imagecreatefromwebp() returns an image identifier representing the image obtained from the given filename.
Uma URL pode ser utilizada como um nome de arquivo se fopen wrappers estiver ativo. Veja fopen() para mais detalhes em como especificar URLs como nome de arquivo. Veja também the Protocolos e Wrappers suportados para informações sobre que capacidades cada wrapper tem, notas de uso e informações sobre variáveis predefinidas fornecidas.
filename
Path to the WebP image.
Retorna um resource de imagem no sucesso, FALSE
em erros.
Exemplo #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);
?>