* @copyright 2015-2015 Nicola Asuni - Tecnick.com LTD * @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) * @link https://github.com/tecnickcom/tc-lib-color * * This file is part of tc-lib-color software library. */ namespace Com\Tecnick\Color\Model; /** * Com\Tecnick\Color\Model\Gray * * Gray Color Model class * * @since 2015-02-21 * @category Library * @package Color * @author Nicola Asuni * @copyright 2015-2015 Nicola Asuni - Tecnick.com LTD * @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) * @link https://github.com/tecnickcom/tc-lib-color */ class Gray extends \Com\Tecnick\Color\Model implements \Com\Tecnick\Color\Model\Template { /** * Color Model type * * @var string */ protected $type = 'GRAY'; /** * Value of the Gray color component [0..1] * * @var float */ protected $cmp_gray = 0.0; /** * Get an array with all color components * * @return array with keys ('G', 'A') */ public function getArray() { return array( 'G' => $this->cmp_gray, 'A' => $this->cmp_alpha ); } /** * Get an array with color components values normalized between 0 and $max. * NOTE: the alpha and other fraction component values are kept in the [0..1] range. * * @param int $max Maximum value to return (reference value) * * @return array with keys ('G', 'A') */ public function getNormalizedArray($max) { return array( 'G' => $this->getNormalizedValue($this->cmp_gray, $max), 'A' => $this->cmp_alpha ); } /** * Get the CSS representation of the color: rgba(R, G, B, A) * NOTE: Supported since CSS3 and above. * Use getHexadecimalColor() for CSS1 and CSS2 * * @return string */ public function getCssColor() { return 'rgba(' .$this->getNormalizedValue($this->cmp_gray, 100).'%,' .$this->getNormalizedValue($this->cmp_gray, 100).'%,' .$this->getNormalizedValue($this->cmp_gray, 100).'%,' .$this->cmp_alpha .')'; } /** * Get the color format used in Acrobat JavaScript * NOTE: the alpha channel is omitted from this representation unless is 0 = transparent * * @return string */ public function getJsPdfColor() { if ($this->cmp_alpha == 0) { return '["T"]'; // transparent color } return sprintf('["G",%F]', $this->cmp_gray); } /** * Get a space separated string with color component values. * * @return string */ public function getComponentsString() { return sprintf('%F', $this->cmp_gray); } /** * Get the color components format used in PDF documents (G) * NOTE: the alpha channel is omitted * * @param bool $stroke True for stroking (lines, drawing) and false for non-stroking (text and area filling). * * @return string */ public function getPdfColor($stroke = false) { $mode = 'g'; if ($stroke) { $mode = strtoupper($mode); } return $this->getComponentsString().' '.$mode."\n"; } /** * Get an array with Gray color components * * @return array with keys ('gray') */ public function toGrayArray() { return array( 'gray' => $this->cmp_gray, 'alpha' => $this->cmp_alpha ); } /** * Get an array with RGB color components * * @return array with keys ('red', 'green', 'blue', 'alpha') */ public function toRgbArray() { return array( 'red' => $this->cmp_gray, 'green' => $this->cmp_gray, 'blue' => $this->cmp_gray, 'alpha' => $this->cmp_alpha ); } /** * Get an array with HSL color components * * @return array with keys ('hue', 'saturation', 'lightness', 'alpha') */ public function toHslArray() { return array( 'hue' => 0, 'saturation' => 0, 'lightness' => $this->cmp_gray, 'alpha' => $this->cmp_alpha ); } /** * Get an array with CMYK color components * * @return array with keys ('cyan', 'magenta', 'yellow', 'key', 'alpha') */ public function toCmykArray() { return array( 'cyan' => 0, 'magenta' => 0, 'yellow' => 0, 'key' => $this->cmp_gray, 'alpha' => $this->cmp_alpha ); } /** * Invert the color */ public function invertColor() { $this->cmp_gray = (1 - $this->cmp_gray); return $this; } }