我正在尝试使用imagecreatefromwebp()将webp文件转换为jpeg,但不幸的是,它引发了一个警告:warning:imagecreatefromwebp():webp decode:fail to decode input data。
这是我的密码

$filename = dirname(__FILE__)."\\".$keyword."1.webp"; // $keyword = 'xyz';

$im = imagecreatefromwebp($filename);

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

请帮忙。

最佳答案

我正在使用这个代码,它对我很好。这里$data包含base64encoded数据

$im = imagecreatefromwebp($data);
$imageResult = imagejpeg($im, $destinationPath . $fileName, 100);
imagedestroy($im);

imagecreatefromwebp()函数接受有效的fileURL。也可以在该函数中传递二进制数据。您可以在这里检查函数定义和示例http://php.net/manual/en/function.imagecreatefromwebp.php

10-07 21:48