Файл vendor/intervention/image/src/Drivers/Imagick/Modifiers/FlopModifier.php Вес запакованого файла 246b (246 b) Вес распакованого файла: 545b (545 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Drivers\Imagick\Modifiers;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Interfaces\SpecializedInterface;
use Intervention\Image\Modifiers\FlopModifier as ModifiersFlopModifier;
class FlopModifier extends ModifiersFlopModifier implements SpecializedInterface
{
public function apply(ImageInterface $image): ImageInterface
{
foreach ($image as $frame) {
$frame->native()->flopImage();
}
return $image;
}
}