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
|
package Graphics::Color::YIQ;
$Graphics::Color::YIQ::VERSION = '0.31';
use Moose;
use MooseX::Aliases;
extends qw(Graphics::Color);
# ABSTRACT: YIQ color space
has 'luminance' => (
is => 'rw',
isa => 'Num',
default => 1,
alias => 'y'
);
has 'in_phase' => (
is => 'rw',
isa => 'Num',
default => 1,
alias => 'i'
);
has 'quadrature' => (
is => 'rw',
isa => 'Num',
default => 1,
alias => 'q'
);
has 'name' => ( is => 'rw', isa => 'Str' );
sub as_string {
my ($self) = @_;
return sprintf('%s,%s,%s',
$self->luminance, $self->in_phase, $self->quadrature
);
}
sub as_array {
my ($self) = @_;
return ($self->luminance, $self->in_phase, $self->quadrature);
}
sub equal_to {
my ($self, $other) = @_;
return 0 unless defined($other);
unless($self->luminance == $other->luminance) {
return 0;
}
unless($self->in_phase == $other->in_phase) {
return 0;
}
unless($self->quadrature == $other->quadrature) {
return 0;
}
return 1;
}
__PACKAGE__->meta->make_immutable;
no Moose;
1;
__END__
=pod
=head1 NAME
Graphics::Color::YIQ - YIQ color space
=head1 VERSION
version 0.31
=head1 SYNOPSIS
use Graphics::Color::YIQ;
my $color = Graphics::Color::YIQ->new({
luminance => 0.5,
in_phase => .5,
quadrature => .25,
});
=head1 DESCRIPTION
Graphics::Color::YIQ represents a Color in an YIQ color space.
=head1 DISCLAIMER
I couldn't find clear information on the bounds of each value, so at the
moment there are none.
=head1 ATTRIBUTES
=head2 luminance
=head2 y
Set/Get the luminance component of this Color.
=head2 in_phase
=head2 i
Set/Get the in_phase component of this Color.
=head2 quadrature
=head2 q
Set/Get the quadrature component of this Color.
=head2 name
Get the name of this color. Only valid if the color was created by name.
=head2 not_equal_to
The opposite of equal_to.
=head1 METHODS
=head2 as_string
Get a string version of this Color in the form of
LUMINANCE,IN-PHASE,QUADRATURE
=head2 as_array
Get the YIQ values as an array
=head2 equal_to
Compares this color to the provided one. Returns 1 if true, else 0;
=head1 AUTHOR
Cory G Watson <gphat@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Cold Hard Code, LLC.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|