Если я повторно пробую прозрачное изображение WEBP, цвет фона черный. Методы, помогшие мне для PNG, не работают с WEBP.
пример:
$thumb = imagecreatetruecolor($newWidth, $newHeight);
imagecolortransparent($thumb, imagecolorallocate($thumb, 0, 0, 0));
imagecopyresampled($thumb, $image, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);