Файл vendor/intervention/image/src/Drivers/Gd/Modifiers/ScaleDownModifier.php Вес запакованого файла 253b (253 b) Вес распакованого файла: 486b (486 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Drivers\Gd\Modifiers;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Interfaces\SizeInterface;
class ScaleDownModifier extends ResizeModifier
{
/**
* {@inheritdoc}
*
* @see ResizeModifier::getAdjustedSize()
*/
protected function getAdjustedSize(ImageInterface $image): SizeInterface
{
return $image->size()->scaleDown($this->width, $this->height);
}
}