Файл vendor/intervention/image/src/Drivers/Imagick/Analyzers/WidthAnalyzer.php Вес запакованого файла 230b (230 b) Вес распакованого файла: 482b (482 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Drivers\Imagick\Analyzers;
use Intervention\Image\Analyzers\WidthAnalyzer as GenericWidthAnalyzer;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Interfaces\SpecializedInterface;
class WidthAnalyzer extends GenericWidthAnalyzer implements SpecializedInterface
{
public function analyze(ImageInterface $image): mixed
{
return $image->core()->native()->getImageWidth();
}
}