Файл: vendor/intervention/image/src/Drivers/Imagick/Modifiers/GreyscaleModifier.php
Строк: 29
<?php
declare(strict_types=1);
namespace InterventionImageDriversImagickModifiers;
use InterventionImageInterfacesImageInterface;
use InterventionImageInterfacesSpecializedInterface;
use InterventionImageModifiersGreyscaleModifier as GenericGreyscaleModifier;
class GreyscaleModifier extends GenericGreyscaleModifier implements SpecializedInterface
{
public function apply(ImageInterface $image): ImageInterface
{
foreach ($image as $frame) {
$frame->native()->modulateImage(100, 0, 100);
}
return $image;
}
}