There was an error while loading. Please reload this page.
public function ConvertImageToWebP(string $source, int $quality = 100, bool $removeOld = false): string
This function converts .jpg, .png and .gif format images into .webp
The following example converts a .png file to .webp
require_once(__DIR__ . "/berry/utils.php"); // Include berry utils package $imageHelper = new ImageHelper(); $originalImagePath = "myPhoto.png"; $newWebPPath = $imageHelper->ConvertImageToWebP($originalImagePath,80,false); print $newWebPPath;