<?php
namespace Buglinjo\LaravelWebp;
use Buglinjo\LaravelWebp\Exceptions\DriverIsNotSupportedException;
use Illuminate\Support\Facades\Config;
use Illuminate\Http\UploadedFile;
class Webp
{
/**
* @param UploadedFile $image
* @return Cwebp|PhpGD|Traits\WebpTrait|null
* @throws DriverIsNotSupportedException
*/
public static function make(UploadedFile $image)
{
$driver = Config::get('laravel-webp.default_driver');
$availableDrivers = Config::get('laravel-webp.drivers');
if (!in_array($driver, array_keys($availableDrivers))) {
throw new DriverIsNotSupportedException($driver);
}
switch ($driver) {
case 'php-gd':
return (new PhpGD())->make($image);
case 'cwebp':
return (new Cwebp())->make($image);
}
return null;
}
}
To access the Kueue Pay Developer API, you’ll need an API key. You can obtain your API key by logging in to your Kueue Pay merchant account and navigating to the API section. Collect Client ID , Secret ID & Merchant ID Carefully. Keep your API key confidential and do not share it publicly.