Вход Регистрация
Файл: vendor/intervention/image/src/Colors/Hsv/Color.php
Строк: 227
<?php

declare(strict_types=1);

namespace 
InterventionImageColorsHsv;

use 
InterventionImageColorsAbstractColor;
use 
InterventionImageColorsHsvChannelsAlpha;
use 
InterventionImageColorsHsvChannelsHue;
use 
InterventionImageColorsHsvChannelsSaturation;
use 
InterventionImageColorsHsvChannelsValue;
use 
InterventionImageColorsHsvDecodersStringColorDecoder;
use 
InterventionImageColorsRgbColorspace as Rgb;
use 
InterventionImageExceptionsColorException;
use 
InterventionImageExceptionsDriverException;
use 
InterventionImageExceptionsInvalidArgumentException;
use 
InterventionImageExceptionsNotSupportedException;
use 
InterventionImageInputHandler;
use 
InterventionImageInterfacesColorChannelInterface;
use 
InterventionImageInterfacesColorspaceInterface;

class 
Color extends AbstractColor
{
    
/**
     * Create new color object.
     *
     * @throws InvalidArgumentException
     */
    
public function __construct(int|Hue $hint|Saturation $sint|Value $vfloat|Alpha $a 1)
    {
        
$this->channels = [
            
is_int($h) ? new Hue($h) : $h,
            
is_int($s) ? new Saturation($s) : $s,
            
is_int($v) ? new Value($v) : $v,
            
is_float($a) ? new Alpha($a) : $a,
        ];
    }

    
/**
     * {@inheritdoc}
     *
     * @see ColorInterface::create()
     *
     * @throws InvalidArgumentException
     */
    
public static function create(int|Hue $hint|Saturation $sint|Value $vfloat|Alpha $a 1): self
    
{
        return new 
self($h$s$v$a);
    }

    
/**
     * Parse HSV color from string.
     *
     * @throws InvalidArgumentException
     * @throws ColorException
     */
    
public static function parse(string $input): self
    
{
        try {
            
$color InputHandler::usingDecoders([
                
StringColorDecoder::class,
            ])->
handle($input);
        } catch (
NotSupportedException DriverException $e) {
            throw new 
InvalidArgumentException(
                
'Unable to parse HSV color from input "' $input '"',
                
previous$e,
            );
        }

        if (!
$color instanceof self) {
            throw new 
ColorException('Result must be instance of ' self::class);
        }

        return 
$color;
    }

    
/**
     * {@inheritdoc}
     *
     * @see ColorInterface::colorspace()
     */
    
public function colorspace(): ColorspaceInterface
    
{
        return new 
Colorspace();
    }

    
/**
     * Return the Hue channel.
     */
    
public function hue(): ColorChannelInterface
    
{
        
/** @throws void */
        
return $this->channel(Hue::class);
    }

    
/**
     * Return the Saturation channel.
     */
    
public function saturation(): ColorChannelInterface
    
{
        
/** @throws void */
        
return $this->channel(Saturation::class);
    }

    
/**
     * Return the Value channel.
     */
    
public function value(): ColorChannelInterface
    
{
        
/** @throws void */
        
return $this->channel(Value::class);
    }

    
/**
     * Return alpha channel.
     */
    
public function alpha(): ColorChannelInterface
    
{
        
/** @throws void */
        
return $this->channel(Alpha::class);
    }

    
/**
     * {@inheritdoc}
     *
     * @see ColorInterface::toHex()
     */
    
public function toHex(bool $prefix false): string
    
{
        
// @phpstan-ignore missingType.checkedException
        
return $this->toColorspace(Rgb::class)->toHex($prefix);
    }

    
/**
     * {@inheritdoc}
     *
     * @see ColorInterface::toString()
     */
    
public function toString(): string
    
{
        if (
$this->isTransparent()) {
            return 
sprintf(
                
'hsv(%d %d%% %d%% / %s)',
                
$this->hue()->value(),
                
$this->saturation()->value(),
                
$this->value()->value(),
                
$this->alpha()->toString(),
            );
        }

        return 
sprintf(
            
'hsv(%d %d%% %d%%)',
            
$this->hue()->value(),
            
$this->saturation()->value(),
            
$this->value()->value(),
        );
    }

    
/**
     * {@inheritdoc}
     *
     * @see ColorInterface::isGrayscale()
     */
    
public function isGrayscale(): bool
    
{
        return 
floatval($this->saturation()->value()) === 0.0;
    }
}
Онлайн: 1
Реклама