|
NAMEImager::Color::Float - Rough floating point sample color handlingSYNOPSIS$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(); DESCRIPTIONThis module handles creating color objects used by Imager. The idea is that in the future this module will be able to handle color space calculations as well.A floating point Imager color consists of up to four components, each in the range 0.0 to 1.0. Unfortunately the meaning of the components can change depending on the type of image you're dealing with:
An alpha value of zero is fully transparent, an alpha value of 1.0 is fully opaque. METHODS
AUTHORArnar M. Hrafnkelsson, addi@umich.edu And a great deal of help from others - see the "README" for a complete list.SEE ALSOImager(3), Imager::Color.http://imager.perl.org/
Visit the GSP FreeBSD Man Page Interface. |