Файл: vendor/intervention/image/src/Drivers/Imagick/Modifiers/GrayscaleModifier.php
Строк: 43
<?php
declare(strict_types=1);
namespace InterventionImageDriversImagickModifiers;
use ImagickException;
use InterventionImageExceptionsModifierException;
use InterventionImageInterfacesImageInterface;
use InterventionImageInterfacesSpecializedInterface;
use InterventionImageModifiersGrayscaleModifier as GenericGrayscaleModifier;
class GrayscaleModifier extends GenericGrayscaleModifier implements SpecializedInterface
{
/**
* @throws ModifierException
*/
public function apply(ImageInterface $image): ImageInterface
{
foreach ($image as $frame) {
try {
$result = $frame->native()->modulateImage(100, 0, 100);
if ($result === false) {
throw new ModifierException(
'Failed to apply ' . self::class . ', unable to modulate image',
);
}
} catch (ImagickException $e) {
throw new ModifierException(
'Failed to apply ' . self::class . ', unable to modulate image',
previous: $e,
);
}
}
return $image;
}
}