要將 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);
?>