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