
Imager::Color - Color handling for Imager.

$color = Imager::Color->new($red, $green, $blue);
$color = Imager::Color->new($red, $green, $blue, $alpha);
$color = Imager::Color->new("#C0C0FF"); # html color specification
$color->set($red, $green, $blue);
$color->set($red, $green, $blue, $alpha);
$color->set("#C0C0FF"); # html color specification
($red, $green, $blue, $alpha) = $color->rgba();
@hsv = $color->hsv(); # not implemented but proposed
$color->info();

This module handles creating color objects used by imager. The idea is that in the future this module will be able to handle colorspace calculations as well.
This creates a color object to pass to functions that need a color argument.
This changes an already defined color. Note that this does not affect any places where the color has been used previously.
This returns the rgba code of the color the object contains.
Calling info merely dumps the relevant colorcode to the log.
You can specify colors in several different ways, you can just supply simple values:
You can supply named parameters:
# all of the following are equivalent my $c1 = Imager::Color->new(red=>100, blue=>255, green=>0); my $c2 = Imager::Color->new(r=>100, b=>255, g=>0); my $c3 = Imager::Color->new(r=>100, blue=>255, g=>0);
# the same as RGB(127,255,127) my $c1 = Imager::Color->new(hue=>120, v=>1, s=>0.5); my $c1 = Imager::Color->new(hue=>120, value=>1, saturation=>0.5);
my $c1 = Imager::Color->new(web=>'#FFC0C0'); # pale red
# exactly the same my $c1 = Imager::Color->new(gray=>128); my $c1 = Imager::Color->new(grey=>128);
# the same my $c1 = Imager::Color->new(rgb=>[255, 100, 0]); my $c1 = Imager::Color->new(r=>255, g=>100, b=>0);
# the same my $c1 = Imager::Color->new(hsv=>[120, 0.5, 1]); my $c1 = Imager::Color->new(hue=>120, v=>1, s=>0.5);
my $c1 = Imager::Color->new(gimp=>'snow'); my $c1 = Imager::Color->new(gimp=>'snow', palette=>'testimg/test_gimp_pal);
my $c1 = Imager::Color->new(xname=>'blue') # usually RGB(0, 0, 255)
Optionally you can add an alpha channel to a color with the 'alpha' or 'a' parameter.
These color specifications can be used for both constructing new colors with the new() method and modifying existing colors with the set() method.

Arnar M. Hrafnkelsson, addi@umich.edu And a great deal of help from others - see the README for a complete list.
