color-thief-php
color-thief-php copied to clipboard
Can get the color ratio
Update file CMap.php:28
public function palette() {
$total = array_sum($this->vboxes->map(function ($x) {
return $x['vbox']->count();
}));
return $this->vboxes->map(function ($vb) use ($total) {
return array($vb['color'], intval($vb['vbox']->count() / floatval($total) * 100));
});
}