Esempio n. 1
0
 public function testReturnsAllPrimaryColors()
 {
     $image = new Image();
     $image->primaryColors = array('black' => 1, 'white' => 1, 'blue' => 1, 'red' => 1, 'green' => 1);
     $this->assertCount(5, $image->primaryColors(0));
     $this->assertCount(5, $image->primaryColors());
 }
Esempio n. 2
0
<?php

// Autoloader
require_once __DIR__ . '/../tests/bootstrap.php';
// Script
use imageColor\models\Image;
$elephpant = new Image();
$elephpant->load(__DIR__ . '/php.jpg');
$elephpantColors = $elephpant->primaryColors();
$rubyShirt = new Image();
$rubyShirt->load(__DIR__ . '/ruby.jpg');
$rubyShirtColors = $rubyShirt->primaryColors();
print_r(array('ruby.jpg' => $rubyShirtColors, 'php.jpg' => $elephpantColors));