-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7,404 changed files
with
312,214 additions
and
3,605 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,49 @@ | ||
|
||
# Node modules | ||
node_modules/ | ||
|
||
# Logs | ||
logs/ | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
vendor | ||
dist | ||
dist-ssr | ||
*.local | ||
*.sql | ||
|
||
# Configuration | ||
config.json | ||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
Thumbs.db | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
# Build files | ||
dist/ | ||
# misc | ||
/storage/tntsearch/*.index | ||
.htaccess | ||
public/.htaccess | ||
public/favicon | ||
public/favicon.ico | ||
install_files | ||
/public/hot | ||
/storage/*.key | ||
Homestead.json | ||
Homestead.yaml | ||
.env | ||
data.ms | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ | ||
storageState.json | ||
# translation files (include default "en"), will be created during installation | ||
resources/lang/*.json | ||
# manifest file will be created during installation | ||
public/manifest.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
namespace League\ColorExtractor; | ||
|
||
class Color | ||
{ | ||
/** | ||
* @param int $color | ||
* @param bool $prependHash = true | ||
* | ||
* @return string | ||
*/ | ||
public static function fromIntToHex($color, $prependHash = true) | ||
{ | ||
return ($prependHash ? '#' : '').sprintf('%06X', $color); | ||
} | ||
|
||
/** | ||
* @param string $color | ||
* | ||
* @return int | ||
*/ | ||
public static function fromHexToInt($color) | ||
{ | ||
return hexdec(ltrim($color, '#')); | ||
} | ||
|
||
/** | ||
* @param int $color | ||
* | ||
* @return array | ||
*/ | ||
public static function fromIntToRgb($color) | ||
{ | ||
return [ | ||
'r' => $color >> 16 & 0xFF, | ||
'g' => $color >> 8 & 0xFF, | ||
'b' => $color & 0xFF, | ||
]; | ||
} | ||
|
||
/** | ||
* @param array $components | ||
* | ||
* @return int | ||
*/ | ||
public static function fromRgbToInt(array $components) | ||
{ | ||
return ($components['r'] * 65536) + ($components['g'] * 256) + ($components['b']); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,275 @@ | ||
<?php | ||
|
||
namespace League\ColorExtractor; | ||
|
||
class ColorExtractor | ||
{ | ||
/** @var \League\ColorExtractor\Palette */ | ||
protected $palette; | ||
|
||
/** @var \SplFixedArray */ | ||
protected $sortedColors; | ||
|
||
/** | ||
* @param \League\ColorExtractor\Palette $palette | ||
*/ | ||
public function __construct(Palette $palette) | ||
{ | ||
$this->palette = $palette; | ||
} | ||
|
||
/** | ||
* @param int $colorCount | ||
* | ||
* @return array | ||
*/ | ||
public function extract($colorCount = 1) | ||
{ | ||
if (!$this->isInitialized()) { | ||
$this->initialize(); | ||
} | ||
|
||
return self::mergeColors($this->sortedColors, $colorCount, 100 / $colorCount); | ||
} | ||
|
||
/** | ||
* @return bool | ||
*/ | ||
protected function isInitialized() | ||
{ | ||
return $this->sortedColors !== null; | ||
} | ||
|
||
protected function initialize() | ||
{ | ||
$queue = new \SplPriorityQueue(); | ||
$this->sortedColors = new \SplFixedArray(count($this->palette)); | ||
|
||
$i = 0; | ||
foreach ($this->palette as $color => $count) { | ||
$labColor = self::intColorToLab($color); | ||
$queue->insert( | ||
$color, | ||
(sqrt($labColor['a'] * $labColor['a'] + $labColor['b'] * $labColor['b']) ?: 1) * | ||
(1 - $labColor['L'] / 200) * | ||
sqrt($count) | ||
); | ||
++$i; | ||
} | ||
|
||
$i = 0; | ||
while ($queue->valid()) { | ||
$this->sortedColors[$i] = $queue->current(); | ||
$queue->next(); | ||
++$i; | ||
} | ||
} | ||
|
||
/** | ||
* @param \SplFixedArray $colors | ||
* @param int $limit | ||
* @param int $maxDelta | ||
* | ||
* @return array | ||
*/ | ||
protected static function mergeColors(\SplFixedArray $colors, $limit, $maxDelta) | ||
{ | ||
$limit = min(count($colors), $limit); | ||
if ($limit === 1) { | ||
return [$colors[0]]; | ||
} | ||
$labCache = new \SplFixedArray($limit - 1); | ||
$mergedColors = []; | ||
|
||
foreach ($colors as $color) { | ||
$hasColorBeenMerged = false; | ||
|
||
$colorLab = self::intColorToLab($color); | ||
|
||
foreach ($mergedColors as $i => $mergedColor) { | ||
if (self::ciede2000DeltaE($colorLab, $labCache[$i]) < $maxDelta) { | ||
$hasColorBeenMerged = true; | ||
break; | ||
} | ||
} | ||
|
||
if ($hasColorBeenMerged) { | ||
continue; | ||
} | ||
|
||
$mergedColorCount = count($mergedColors); | ||
$mergedColors[] = $color; | ||
|
||
if ($mergedColorCount + 1 == $limit) { | ||
break; | ||
} | ||
|
||
$labCache[$mergedColorCount] = $colorLab; | ||
} | ||
|
||
return $mergedColors; | ||
} | ||
|
||
/** | ||
* @param array $firstLabColor | ||
* @param array $secondLabColor | ||
* | ||
* @return float | ||
*/ | ||
protected static function ciede2000DeltaE($firstLabColor, $secondLabColor) | ||
{ | ||
$C1 = sqrt(pow($firstLabColor['a'], 2) + pow($firstLabColor['b'], 2)); | ||
$C2 = sqrt(pow($secondLabColor['a'], 2) + pow($secondLabColor['b'], 2)); | ||
$Cb = ($C1 + $C2) / 2; | ||
|
||
$G = .5 * (1 - sqrt(pow($Cb, 7) / (pow($Cb, 7) + pow(25, 7)))); | ||
|
||
$a1p = (1 + $G) * $firstLabColor['a']; | ||
$a2p = (1 + $G) * $secondLabColor['a']; | ||
|
||
$C1p = sqrt(pow($a1p, 2) + pow($firstLabColor['b'], 2)); | ||
$C2p = sqrt(pow($a2p, 2) + pow($secondLabColor['b'], 2)); | ||
|
||
$h1p = $a1p == 0 && $firstLabColor['b'] == 0 ? 0 : atan2($firstLabColor['b'], $a1p); | ||
$h2p = $a2p == 0 && $secondLabColor['b'] == 0 ? 0 : atan2($secondLabColor['b'], $a2p); | ||
|
||
$LpDelta = $secondLabColor['L'] - $firstLabColor['L']; | ||
$CpDelta = $C2p - $C1p; | ||
|
||
if ($C1p * $C2p == 0) { | ||
$hpDelta = 0; | ||
} elseif (abs($h2p - $h1p) <= 180) { | ||
$hpDelta = $h2p - $h1p; | ||
} elseif ($h2p - $h1p > 180) { | ||
$hpDelta = $h2p - $h1p - 360; | ||
} else { | ||
$hpDelta = $h2p - $h1p + 360; | ||
} | ||
|
||
$HpDelta = 2 * sqrt($C1p * $C2p) * sin($hpDelta / 2); | ||
|
||
$Lbp = ($firstLabColor['L'] + $secondLabColor['L']) / 2; | ||
$Cbp = ($C1p + $C2p) / 2; | ||
|
||
if ($C1p * $C2p == 0) { | ||
$hbp = $h1p + $h2p; | ||
} elseif (abs($h1p - $h2p) <= 180) { | ||
$hbp = ($h1p + $h2p) / 2; | ||
} elseif ($h1p + $h2p < 360) { | ||
$hbp = ($h1p + $h2p + 360) / 2; | ||
} else { | ||
$hbp = ($h1p + $h2p - 360) / 2; | ||
} | ||
|
||
$T = 1 - .17 * cos($hbp - 30) + .24 * cos(2 * $hbp) + .32 * cos(3 * $hbp + 6) - .2 * cos(4 * $hbp - 63); | ||
|
||
$sigmaDelta = 30 * exp(-pow(($hbp - 275) / 25, 2)); | ||
|
||
$Rc = 2 * sqrt(pow($Cbp, 7) / (pow($Cbp, 7) + pow(25, 7))); | ||
|
||
$Sl = 1 + ((.015 * pow($Lbp - 50, 2)) / sqrt(20 + pow($Lbp - 50, 2))); | ||
$Sc = 1 + .045 * $Cbp; | ||
$Sh = 1 + .015 * $Cbp * $T; | ||
|
||
$Rt = -sin(2 * $sigmaDelta) * $Rc; | ||
|
||
return sqrt( | ||
pow($LpDelta / $Sl, 2) + | ||
pow($CpDelta / $Sc, 2) + | ||
pow($HpDelta / $Sh, 2) + | ||
$Rt * ($CpDelta / $Sc) * ($HpDelta / $Sh) | ||
); | ||
} | ||
|
||
/** | ||
* @param int $color | ||
* | ||
* @return array | ||
*/ | ||
protected static function intColorToLab($color) | ||
{ | ||
return self::xyzToLab( | ||
self::srgbToXyz( | ||
self::rgbToSrgb( | ||
[ | ||
'R' => ($color >> 16) & 0xFF, | ||
'G' => ($color >> 8) & 0xFF, | ||
'B' => $color & 0xFF, | ||
] | ||
) | ||
) | ||
); | ||
} | ||
|
||
/** | ||
* @param int $value | ||
* | ||
* @return float | ||
*/ | ||
protected static function rgbToSrgbStep($value) | ||
{ | ||
$value /= 255; | ||
|
||
return $value <= .03928 ? | ||
$value / 12.92 : | ||
pow(($value + .055) / 1.055, 2.4); | ||
} | ||
|
||
/** | ||
* @param array $rgb | ||
* | ||
* @return array | ||
*/ | ||
protected static function rgbToSrgb($rgb) | ||
{ | ||
return [ | ||
'R' => self::rgbToSrgbStep($rgb['R']), | ||
'G' => self::rgbToSrgbStep($rgb['G']), | ||
'B' => self::rgbToSrgbStep($rgb['B']), | ||
]; | ||
} | ||
|
||
/** | ||
* @param array $rgb | ||
* | ||
* @return array | ||
*/ | ||
protected static function srgbToXyz($rgb) | ||
{ | ||
return [ | ||
'X' => (.4124564 * $rgb['R']) + (.3575761 * $rgb['G']) + (.1804375 * $rgb['B']), | ||
'Y' => (.2126729 * $rgb['R']) + (.7151522 * $rgb['G']) + (.0721750 * $rgb['B']), | ||
'Z' => (.0193339 * $rgb['R']) + (.1191920 * $rgb['G']) + (.9503041 * $rgb['B']), | ||
]; | ||
} | ||
|
||
/** | ||
* @param float $value | ||
* | ||
* @return float | ||
*/ | ||
protected static function xyzToLabStep($value) | ||
{ | ||
return $value > 216 / 24389 ? pow($value, 1 / 3) : 841 * $value / 108 + 4 / 29; | ||
} | ||
|
||
/** | ||
* @param array $xyz | ||
* | ||
* @return array | ||
*/ | ||
protected static function xyzToLab($xyz) | ||
{ | ||
//http://en.wikipedia.org/wiki/Illuminant_D65#Definition | ||
$Xn = .95047; | ||
$Yn = 1; | ||
$Zn = 1.08883; | ||
|
||
// http://en.wikipedia.org/wiki/Lab_color_space#CIELAB-CIEXYZ_conversions | ||
return [ | ||
'L' => 116 * self::xyzToLabStep($xyz['Y'] / $Yn) - 16, | ||
'a' => 500 * (self::xyzToLabStep($xyz['X'] / $Xn) - self::xyzToLabStep($xyz['Y'] / $Yn)), | ||
'b' => 200 * (self::xyzToLabStep($xyz['Y'] / $Yn) - self::xyzToLabStep($xyz['Z'] / $Zn)), | ||
]; | ||
} | ||
} |
Oops, something went wrong.