View file vendor/intervention/image/src/Drivers/Imagick/Analyzers/ResolutionAnalyzer.php

File size: 735B
<?php

declare(strict_types=1);

namespace Intervention\Image\Drivers\Imagick\Analyzers;

use Intervention\Image\Analyzers\ResolutionAnalyzer as GenericResolutionAnalyzer;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Interfaces\SpecializedInterface;
use Intervention\Image\Resolution;

class ResolutionAnalyzer extends GenericResolutionAnalyzer implements SpecializedInterface
{
    public function analyze(ImageInterface $image): mixed
    {
        $imagick = $image->core()->native();
        $imageResolution = $imagick->getImageResolution();

        return new Resolution(
            $imageResolution['x'],
            $imageResolution['y'],
            $imagick->getImageUnits(),
        );
    }
}