HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/ivs.kaunokolegija.lt/laravel/vendor/spatie/image-optimizer/src/Optimizers/Avifenc.php
<?php

namespace Spatie\ImageOptimizer\Optimizers;

use Spatie\ImageOptimizer\Image;

class Avifenc extends BaseOptimizer
{
    public $binaryName = 'avifenc';
    public $decodeBinaryName = 'avifdec';

    public function canHandle(Image $image): bool
    {
        if (version_compare(PHP_VERSION, '8.1.0', '<')) {
            return $image->extension() === 'avif';
        }

        return $image->mime() === 'image/avif';
    }

    public function getCommand(): string
    {
        return $this->getDecodeCommand().' && '
            .$this->getEncodeCommand();
    }

    protected function getDecodeCommand()
    {
        $this->tmpPath = tempnam(sys_get_temp_dir(), 'avifdec').'.png';

        $optionString = implode(' ', [
            '-j all',
            '--ignore-icc',
            '--no-strict',
            '--png-compress 0',
        ]);

        return "\"{$this->binaryPath}{$this->decodeBinaryName}\" {$optionString}"
            .' '.escapeshellarg($this->imagePath)
            .' '.escapeshellarg($this->tmpPath);
    }

    protected function getEncodeCommand()
    {
        $optionString = implode(' ', $this->options);

        return "\"{$this->binaryPath}{$this->binaryName}\" {$optionString}"
            .' '.escapeshellarg($this->tmpPath)
            .' '.escapeshellarg($this->imagePath);
    }
}