Файл: vendor/intervention/image/src/Drivers/Imagick/Modifiers/ProfileModifier.php
Строк: 44
<?php
declare(strict_types=1);
namespace InterventionImageDriversImagickModifiers;
use ImagickException;
use InterventionImageExceptionsModifierException;
use InterventionImageInterfacesImageInterface;
use InterventionImageInterfacesSpecializedInterface;
use InterventionImageModifiersProfileModifier as GenericProfileModifier;
class ProfileModifier extends GenericProfileModifier implements SpecializedInterface
{
/**
* @throws ModifierException
*/
public function apply(ImageInterface $image): ImageInterface
{
$imagick = $image->core()->native();
try {
$result = $imagick->profileImage('icc', (string) $this->profile);
if ($result === false) {
throw new ModifierException(
'Failed to apply ' . self::class . ', unable to set ICC color profile',
);
}
} catch (ImagickException $e) {
throw new ModifierException(
'Failed to apply ' . self::class . ', unable to set ICC color profile',
previous: $e,
);
}
return $image;
}
}