PHP code example of mauriciourrego / colorcube-php
1. Go to this page and download the library: Download mauriciourrego/colorcube-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mauriciourrego / colorcube-php example snippets
$cc = new ColorCube( // all arguments are optional; these are the defaults:
20, // color-space resolution
[255, 255, 255], // avoid color
0.4, // distinctness threshold
0.2, // brightness threshold
);
$image = imagecreatefromjpeg($image_url);
$colors = $cc->get_colors($image);