php8.5
Home/ Manual/ image / functions/ imagecreatefromwebp

imagecreatefromwebp

PHP function Edit on GitHub ✎

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

New

Description

imagecreatefromwebp(string $filename): GdImage|false

imagecreatefromwebp() returns an image identifier representing the image obtained from the given filename. Note that animated WebP files cannot be read.

Fopen-wrapper

Parameters

filename

Path to the WebP image.

Return Values

Identifier

Changelog

VersionDescription
8.0.0On success, this function returns a GDImage instance now; previously, a resource was returned.

Examples

Convert an WebP image to a jpeg image using imagecreatefromwebp()

php
<?php
// Load the WebP file
$im = imagecreatefromwebp('./example.webp');

// Convert it to a jpeg file with 100% quality
imagejpeg($im, './example.jpeg', 100);
?>

Source: reference/image/functions/imagecreatefromwebp.xml · from the official PHP manual (php/doc-en)