测试php实现png图片转webp:
<?php
$baseDir = getcwd();
$read_from_path = $baseDir . '\img\112.png';//这里实在window环境下,自己根据环境和项目修改路径
$save_to_path = $baseDir . '\img\webps\112.png';
// var_dump(function_exists('imagewebp'));
$img = imagecreatefrompng($read_from_path);
imagepalettetotruecolor($img);
imagealphablending($img, true);
imagesavealpha($img, true);
var_dump(imagewebp($img, $save_to_path, 80));
imagedestroy($img);
参考php官网地址:https://www.php.net/manual/zh/function.imagewebp.php