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