mirror of
https://github.com/Intervention/image.git
synced 2025-01-17 12:18:14 +01:00
Remove redundant code
This commit is contained in:
parent
f5d32df631
commit
00bc9e44f2
@ -1,56 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Intervention\Image\Drivers\Imagick\Traits;
|
||||
|
||||
use Imagick;
|
||||
use ImagickPixel;
|
||||
use Intervention\Image\Colors\Cmyk\Colorspace as CmykColorspace;
|
||||
use Intervention\Image\Interfaces\ColorInterface;
|
||||
use Intervention\Image\Interfaces\ColorspaceInterface;
|
||||
|
||||
trait CanHandleColors
|
||||
{
|
||||
/**
|
||||
* Transforms ImagickPixel to own color object
|
||||
*
|
||||
* @param ImagickPixel $pixel
|
||||
* @param ColorspaceInterface $colorspace
|
||||
* @return ColorInterface
|
||||
*/
|
||||
public function pixelToColor(ImagickPixel $pixel, ColorspaceInterface $colorspace): ColorInterface
|
||||
{
|
||||
return match (get_class($colorspace)) {
|
||||
CmykColorspace::class => $colorspace->colorFromNormalized([
|
||||
$pixel->getColorValue(Imagick::COLOR_CYAN),
|
||||
$pixel->getColorValue(Imagick::COLOR_MAGENTA),
|
||||
$pixel->getColorValue(Imagick::COLOR_YELLOW),
|
||||
$pixel->getColorValue(Imagick::COLOR_BLACK),
|
||||
]),
|
||||
default => $colorspace->colorFromNormalized([
|
||||
$pixel->getColorValue(Imagick::COLOR_RED),
|
||||
$pixel->getColorValue(Imagick::COLOR_GREEN),
|
||||
$pixel->getColorValue(Imagick::COLOR_BLUE),
|
||||
$pixel->getColorValue(Imagick::COLOR_ALPHA),
|
||||
]),
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Transforms given color to the corresponding ImagickPixel in given colorspace
|
||||
*
|
||||
* Colorspaces of color might be different from given colorspace. You might
|
||||
* have a CMYK Image but give an rgb color to a method. This makes sure
|
||||
* that the color is converted to the given colorspace. In this case
|
||||
* the image colorspace which is passed to this method.
|
||||
*
|
||||
* @param ColorInterface $color
|
||||
* @param ColorspaceInterface $colorspace
|
||||
* @return ImagickPixel
|
||||
*/
|
||||
public function colorToPixel(ColorInterface $color, ColorspaceInterface $colorspace): ImagickPixel
|
||||
{
|
||||
return new ImagickPixel(
|
||||
(string) $color->convertTo($colorspace)
|
||||
);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user