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