The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Convert::Color::HSLuv - a color value in the HSLuv color space

SYNOPSIS

  use Convert::Color::HSLuv;
  my $red = Convert::Color::HSLuv->new(12.17705, 100, 53.23712);
  my $green = Convert::Color::HSLuv->new('127.71501,100,87.73552');

  use Convert::Color;
  my $blue = Convert::Color->new('hsluv:265.87432,100,32.30087');

  say $red->H; # 12.17705
  say $red->S; # 100
  say $red->L; # 53.23712
  say join ',', $blue->hsl; # 265.87432,100,32.30087

DESCRIPTION

Objects of this class represent colors in the HSLuv color space, revision 4.

Methods:

Convert::Color::HSLuv->new($h, $s, $l)

Construct a color from its components.

Convert::Color::HSLuv->new("$h,$s,$l")

Construct a color from a string. The string should contain the three components, separated by commas.

$hsluv->H
$hsluv->S
$hsluv->L

Accessors for the three components of the color.

$hsluv->hsl

Returns the three components as a list.

SEE ALSO

Convert::Color, http://www.hsluv.org/

AUTHOR

Marius Gavrilescu, <marius@ieval.ro>

COPYRIGHT AND LICENSE

Copyright (C) 2015-2017 by Marius Gavrilescu

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.20.2 or, at your option, any later version of Perl 5 you may have available.