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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
# You may distribute under the terms of either the GNU General Public License
# or the Artistic License (the same terms as Perl itself)
#
# (C) Paul Evans, 2009-2022 -- leonerd@leonerd.org.uk
package Convert::Color::HSL 0.18;
use v5.14;
use warnings;
use base qw( Convert::Color::HueChromaBased );
__PACKAGE__->register_color_space( 'hsl' );
use Carp;
=head1 NAME
C<Convert::Color::HSL> - a color value represented as hue/saturation/lightness
=head1 SYNOPSIS
Directly:
use Convert::Color::HSL;
my $red = Convert::Color::HSL->new( 0, 1, 0.5 );
# Can also parse strings
my $pink = Convert::Color::HSL->new( '0,1,0.8' );
Via L<Convert::Color>:
use Convert::Color;
my $cyan = Convert::Color->new( 'hsl:300,1,0.5' );
=head1 DESCRIPTION
Objects in this class represent a color in HSL space, as a set of three
floating-point values. Hue is stored as a value in degrees, in the range
0 to 360 (exclusive). Saturation and lightness are in the range 0 to 1.
This color space may be considered as a cylinder, of height and radius 1. Hue
represents the position of the color as the angle around the axis, the
saturation as the distance from the axis, and the lightness the height above
the base. In this shape, the entire base of the cylinder is pure black, the
axis through the centre represents the range of greys, and the entire top of
the cylinder is pure white. The circumference of the circular cross-section
midway along the axis contains the pure-saturated color wheel.
Because both surfaces of this cylinder contain pure black or white discs, a
closely-related color space can be created by reshaping the cylinder into a
bi-cone such that the top and bottom of the cylinder become single points. The
radius from the axis of this shape is called the chroma (though this is a
different definition of "chroma" than that used by CIE).
While the components of this space are called Hue-Chroma-Lightness, it should
not be confused with the similarly-named Hue-Chroma-Luminance (HCL) space.
=cut
=head1 CONSTRUCTOR
=cut
=head2 new
$color = Convert::Color::HSL->new( $hue, $saturation, $lightness );
Returns a new object to represent the set of values given. The hue should be
in the range 0 to 360 (exclusive), and saturation and lightness should be
between 0 and 1. Values outside of these ranges will be clamped.
$color = Convert::Color::HSL->new( $string );
Parses C<$string> for values, and construct a new object similar to the above
three-argument form. The string should be in the form
hue,saturation,lightnes
containing the three floating-point values in decimal notation.
=cut
sub new
{
my $class = shift;
my ( $h, $s, $l );
if( @_ == 1 ) {
local $_ = $_[0];
if( m/^(\d+(?:\.\d+)?),(\d+(?:\.\d+)?),(\d+(?:\.\d+)?)$/ ) {
( $h, $s, $l ) = ( $1, $2, $3 );
}
else {
croak "Unrecognised HSL string spec '$_'";
}
}
elsif( @_ == 3 ) {
( $h, $s, $l ) = @_;
}
else {
croak "usage: Convert::Color::HSL->new( SPEC ) or ->new( H, S, L )";
}
# Clamp
for ( $s, $l ) {
$_ = 0 if $_ < 0;
$_ = 1 if $_ > 1;
}
# Fit to range [0,360)
$h += 360 while $h < 0;
$h -= 360 while $h >= 360;
return bless [ $h, $s, $l ], $class;
}
=head1 METHODS
=cut
=head2 hue
$h = $color->hue;
=head2 saturation
$s = $color->saturation;
=head2 lightness
$v = $color->lightness;
Accessors for the three components of the color.
=cut
# Simple accessors
sub hue { shift->[0] }
sub saturation { shift->[1] }
sub lightness { shift->[2] }
=head2 chroma
$c = $color->chroma;
Returns the derived property of "chroma", which maps the color space onto a
bicone instead of a cylinder. This more closely measures the intuitive concept
of how "colorful" the color is than the saturation value and is useful for
distance calculations.
=cut
sub chroma
{
my $self = shift;
my ( undef, $s, $l ) = $self->hsl;
if( $l > 0.5 ) {
# upper bicone
return 2 * $s * ( $l - 1 );
}
else {
# lower bicone
return 2 * $s * $l;
}
}
=head2 hsl
( $hue, $saturation, $lightness ) = $color->hsl;
Returns the individual hue, saturation and lightness components of the color
value.
=cut
sub hsl
{
my $self = shift;
return @$self;
}
# Conversions
sub rgb
{
my $self = shift;
# See also
# http://en.wikipedia.org/wiki/HSV_color_space
my ( $h, $s, $l ) = $self->hsl;
my $q = $l < 0.5 ? $l * ( 1 + $s )
: $l + $s - ( $l * $s );
my $p = 2 * $l - $q;
# Modify the algorithm slightly, so we scale this up by 6
my $hk = $h / 60;
my $tr = $hk + 2;
my $tg = $hk;
my $tb = $hk - 2;
for ( $tr, $tg, $tb ) {
$_ += 6 while $_ < 0;
$_ -= 6 while $_ > 6;
}
return map {
$_ < 1 ? $p + ( ( $q - $p ) * $_ ) :
$_ < 3 ? $q :
$_ < 4 ? $p + ( ( $q - $p ) * ( 4 - $_ ) ) :
$p
} ( $tr, $tg, $tb );
}
sub new_rgb
{
my $class = shift;
my ( $r, $g, $b ) = @_;
my ( $hue, $min, $max ) = $class->_hue_min_max( $r, $g, $b );
my $l = ( $max + $min ) / 2;
my $s = $min == $max ? 0 :
$l <= 1/2 ? ( $max - $min ) / ( 2 * $l ) :
( $max - $min ) / ( 2 - 2 * $l );
return $class->new( $hue, $s, $l );
}
=head2 dst_hsl
$measure = $color->dst_hsl( $other );
Returns a measure of the distance between the two colors. This is the
Euclidean distance between the two colors as points in the chroma-adjusted
cone space.
=cut
sub dst_hsl
{
my $self = shift;
my ( $other ) = @_;
# ... / sqrt(4)
return sqrt( $self->dst_hsl_cheap( $other ) ) / 2;
}
=head2 dst_hsl_cheap
$measure = $color->dst_hsl_cheap( $other );
Returns a measure of the distance between the two colors. This is used in the
calculation of C<dst_hsl> but since it omits the final square-root and scaling
it is cheaper to calculate, for use in cases where only the relative values
matter, such as when picking the "best match" out of a set of colors. It
ranges between 0 for identical colors and 4 for the distance between
complementary pure-saturated colors.
=cut
sub dst_hsl_cheap
{
my $self = shift;
my ( $other ) = @_;
my $dl = $self->lightness - $other->lightness;
return $self->_huechroma_dst_squ( $other ) + $dl*$dl;
}
=head1 SEE ALSO
=over 4
=item *
L<Convert::Color> - color space conversions
=item *
L<Convert::Color::RGB> - a color value represented as red/green/blue
=item *
L<http://en.wikipedia.org/wiki/HSL_and_HSV> - HSL and HSV on Wikipedia
=back
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
=cut
0x55AA;
|