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
|
# 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::CMY 0.18;
use v5.14;
use warnings;
use base qw( Convert::Color );
__PACKAGE__->register_color_space( 'cmy' );
use Carp;
=head1 NAME
C<Convert::Color::CMY> - a color value represented as cyan/magenta/yellow
=head1 SYNOPSIS
Directly:
use Convert::Color::CMY;
my $red = Convert::Color::CMY->new( 0, 1, 1 );
# Can also parse strings
my $pink = Convert::Color::CMY->new( '0,0.3,0.3' );
Via L<Convert::Color>:
use Convert::Color;
my $cyan = Convert::Color->new( 'cmy:1,0,0' );
=head1 DESCRIPTION
Objects in this class represent a color in CMY space, as a set of three
floating-point values in the range 0 to 1.
=cut
=head1 CONSTRUCTOR
=cut
=head2 new
$color = Convert::Color::CMY->new( $cyan, $magenta, $yellow );
Returns a new object to represent the set of values given. These values should
be floating-point numbers between 0 and 1. Values outside of this range will
be clamped.
$color = Convert::Color::CMY->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
cyan,magenta,yellow
containing the three floating-point values in decimal notation.
=cut
sub new
{
my $class = shift;
my ( $c, $m, $y );
if( @_ == 1 ) {
local $_ = $_[0];
if( m/^(\d+(?:\.\d+)?),(\d+(?:\.\d+)?),(\d+(?:\.\d+)?)$/ ) {
( $c, $m, $y ) = ( $1, $2, $3 );
}
else {
croak "Unrecognised CMY string spec '$_'";
}
}
elsif( @_ == 3 ) {
( $c, $m, $y ) = @_;
}
else {
croak "usage: Convert::Color::CMY->new( SPEC ) or ->new( C, M, Y )";
}
# Clamp
for ( $c, $m, $y ) {
$_ = 0 if $_ < 0;
$_ = 1 if $_ > 1;
}
return bless [ $c, $m, $y ], $class;
}
=head1 METHODS
=cut
=head2 cyan
$c = $color->cyan;
=head2 magenta
$m = $color->magenta;
=head2 yellow
$y = $color->yellow;
Accessors for the three components of the color.
=cut
# Simple accessors
sub cyan { shift->[0] }
sub magenta { shift->[1] }
sub yellow { shift->[2] }
=head2 cmy
( $cyan, $magenta, $yellow ) = $color->cmy;
Returns the individual cyan, magenta and yellow color components of the color
value.
=cut
sub cmy
{
my $self = shift;
return @$self;
}
# Conversions
sub rgb
{
my $self = shift;
return 1 - $self->cyan, 1 - $self->magenta, 1 - $self->yellow;
}
sub new_rgb
{
my $class = shift;
my ( $r, $g, $b ) = @_;
$class->new( 1 - $r, 1 - $g, 1 - $b );
}
=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<Convert::Color::CMYK> - a color value represented as cyan/magenta/yellow/key
=back
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
=cut
0x55AA;
|