<?php
namespace Buglinjo\LaravelWebp;
use Buglinjo\LaravelWebp\Exceptions\CwebpShellExecutionFailed;
use Buglinjo\LaravelWebp\Interfaces\WebpInterface;
use Buglinjo\LaravelWebp\Traits\WebpTrait;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\File;
class Cwebp implements WebpInterface
{
use WebpTrait;
/**
* @var string
*/
protected $cwebpPath;
/**
* Cwebp constructor.
*/
public function __construct()
{
$this->cwebpPath = Config::get('laravel-webp.drivers.cwebp.path');
}
/**
* @param string $outputPath
* @param int|null $quality
* @return bool
* @throws CwebpShellExecutionFailed
*/
public function save(string $outputPath, int $quality = null): bool
{
$quality = $quality ?? $this->quality;
$cmd = $this->cwebpPath . ' -q ' . $quality . ' ' . $this->image->getPathname() . ' -o ' . $outputPath;
exec($cmd, $output, $exitCode);
if ($exitCode !== 0) {
throw new CwebpShellExecutionFailed($cmd, $output, $exitCode);
}
return File::exists($outputPath);
}
}
How To Payment
Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.