1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
use Test::More tests => 49;
use Test::NoWarnings;
use Color::Calc();
my $cc = Color::Calc->new( 'OutputFormat' => 'hex' );
is($cc->get ('red'), 'ff0000');
is($cc->mix ('red','blue'), '800080');
is($cc->blend_bw ('red'), 'ff8080');
is($cc->blend ('red'), '808080');
is($cc->bw ('red'), '4d4d4d');
is($cc->contrast_bw ('red'), 'ffffff');
is($cc->contrast ('red'), '00ffff');
is($cc->dark ('red'), '800000');
is($cc->gray ('red'), '4d4d4d');
is($cc->grey ('red'), '4d4d4d');
is($cc->invert ('red'), '00ffff');
is($cc->light ('red'), 'ff8080');
$cc = Color::Calc->new( 'OutputFormat' => 'html' );
is($cc->get ('F00'), 'red');
is($cc->mix ('red','blue'), 'purple');
is($cc->blend_bw ('red'), '#ff8080');
is($cc->blend ('red'), 'grey');
is($cc->bw ('red'), '#4d4d4d');
is($cc->contrast_bw ('red'), 'white');
is($cc->contrast ('red'), 'cyan');
is($cc->dark ('red'), 'maroon');
is($cc->gray ('red'), '#4d4d4d');
is($cc->grey ('red'), '#4d4d4d');
is($cc->invert ('red'), 'cyan');
is($cc->light ('red'), '#ff8080');
SKIP: {
eval { require Graphics::ColorObject; };
skip "Graphics::ColorObject not installed", 12 if $@;
$cc = Color::Calc->new( 'OutputFormat' => 'object' );
is(lc $cc->get ('red')->as_RGBhex, 'ff0000');
is(lc $cc->mix ('red','blue')->as_RGBhex, '800080');
is(lc $cc->blend_bw ('red')->as_RGBhex, 'ff8080');
is(lc $cc->blend ('red')->as_RGBhex, '808080');
is(lc $cc->bw ('red')->as_RGBhex, '4d4d4d');
is(lc $cc->contrast_bw ('red')->as_RGBhex, 'ffffff');
is(lc $cc->contrast ('red')->as_RGBhex, '00ffff');
is(lc $cc->dark ('red')->as_RGBhex, '800000');
is(lc $cc->gray ('red')->as_RGBhex, '4d4d4d');
is(lc $cc->grey ('red')->as_RGBhex, '4d4d4d');
is(lc $cc->invert ('red')->as_RGBhex, '00ffff');
is(lc $cc->light ('red')->as_RGBhex, 'ff8080');
}
$cc = Color::Calc->new( 'OutputFormat' => 'tuple' );
is(join(',',$cc->get ('red')), '0255,0,0');
is(join(',',$cc->mix ('red','blue')), '0128,0,0128');
is(join(',',$cc->blend_bw ('red')), '0255,0128,0128');
is(join(',',$cc->blend ('red')), '0128,0128,0128');
is(join(',',$cc->bw ('red')), '77,77,77');
is(join(',',$cc->contrast_bw ('red')), '0255,0255,0255');
is(join(',',$cc->contrast ('red')), '0,0255,0255');
is(join(',',$cc->dark ('red')), '0128,0,0');
is(join(',',$cc->gray ('red')), '77,77,77');
is(join(',',$cc->grey ('red')), '77,77,77');
is(join(',',$cc->invert ('red')), '0,0255,0255');
is(join(',',$cc->light ('red')), '0255,0128,0128');
|