<?php
namespace Spatie\ImageOptimizer\Optimizers;
use Spatie\ImageOptimizer\Image;
class Pngquant extends BaseOptimizer
{
public $binaryName = 'pngquant';
public function canHandle(Image $image): bool
{
return $image->mime() === 'image/png';
}
public function getCommand(): string
{
$optionString = implode(' ', $this->options);
return "\"{$this->binaryPath}{$this->binaryName}\" {$optionString}"
.' '.escapeshellarg($this->imagePath)
.' --output='.escapeshellarg($this->imagePath);
}
}
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]