要将 PNG 图像转换为 Webp,我们可以这样做
<?php
// 图像
$dir = 'img/countries/';
$name = 'brazil.png';
$newName = 'brazil.webp';
// 创建并保存
$img = imagecreatefrompng($dir . $name);
imagepalettetotruecolor($img);
imagealphablending($img, true);
imagesavealpha($img, true);
imagewebp($img, $dir . $newName, 100);
imagedestroy($img);
?>