File Coverage

blib/lib/PDF/API3/Compat/API2/Resource/ColorSpace/Indexed/Hue.pm
Criterion Covered Total %
statement 23 47 48.9
branch 0 4 0.0
condition n/a
subroutine 8 10 80.0
pod 2 2 100.0
total 33 63 52.3


line stmt bran cond sub pod time code
1             #=======================================================================
2             # ____ ____ _____ _ ____ ___ ____
3             # | _ \| _ \| ___| _ _ / \ | _ \_ _| |___ \
4             # | |_) | | | | |_ (_) (_) / _ \ | |_) | | __) |
5             # | __/| |_| | _| _ _ / ___ \| __/| | / __/
6             # |_| |____/|_| (_) (_) /_/ \_\_| |___| |_____|
7             #
8             # A Perl Module Chain to faciliate the Creation and Modification
9             # of High-Quality "Portable Document Format (PDF)" Files.
10             #
11             # Copyright 1999-2005 Alfred Reibenschuh .
12             #
13             #=======================================================================
14             #
15             # This library is free software; you can redistribute it and/or
16             # modify it under the terms of the GNU Lesser General Public
17             # License as published by the Free Software Foundation; either
18             # version 2 of the License, or (at your option) any later version.
19             #
20             # This library is distributed in the hope that it will be useful,
21             # but WITHOUT ANY WARRANTY; without even the implied warranty of
22             # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23             # Lesser General Public License for more details.
24             #
25             # You should have received a copy of the GNU Lesser General Public
26             # License along with this library; if not, write to the
27             # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28             # Boston, MA 02111-1307, USA.
29             #
30             # $Id: Hue.pm,v 2.0 2005/11/16 02:18:14 areibens Exp $
31             #
32             #=======================================================================
33            
34             package PDF::API3::Compat::API2::Resource::ColorSpace::Indexed::Hue;
35            
36             BEGIN {
37            
38 1     1   7 use strict;
  1         4  
  1         48  
39 1     1   6 use PDF::API3::Compat::API2::Resource::ColorSpace::Indexed;
  1         3  
  1         25  
40 1     1   7 use PDF::API3::Compat::API2::Basic::PDF::Utils;
  1         2  
  1         141  
41 1     1   7 use PDF::API3::Compat::API2::Util;
  1         2  
  1         227  
42 1     1   8 use POSIX;
  1         3  
  1         16  
43            
44 1     1   3754 use vars qw(@ISA $VERSION);
  1         2  
  1         170  
45            
46 1     1   27 @ISA = qw( PDF::API3::Compat::API2::Resource::ColorSpace::Indexed );
47            
48 1         47 ( $VERSION ) = sprintf '%i.%03i', split(/\./,('$Revision: 2.0 $' =~ /Revision: (\S+)\s/)[0]); # $Date: 2005/11/16 02:18:14 $
49            
50             }
51 1     1   8 no warnings qw[ deprecated recursion uninitialized ];
  1         2  
  1         516  
52            
53             =item $cs = PDF::API3::Compat::API2::Resource::ColorSpace::Indexed::Hue->new $pdf
54            
55             Returns a new colorspace object created based on various hues.
56            
57             =cut
58            
59             sub new {
60 0     0 1   my ($class,$pdf)=@_;
61            
62 0 0         $class = ref $class if ref $class;
63 0           $self=$class->SUPER::new($pdf,pdfkey());
64 0 0         $pdf->new_obj($self) unless($self->is_obj($pdf));
65 0           $self->{' apipdf'}=$pdf;
66 0           my $csd=PDFDict();
67 0           $pdf->new_obj($csd);
68 0           $csd->{Filter}=PDFArray(PDFName('FlateDecode'));
69            
70             ## $csd->{WhitePoint}=PDFArray(map { PDFNum($_) } (0.95049, 1, 1.08897));
71             ## $csd->{BlackPoint}=PDFArray(map { PDFNum($_) } (0, 0, 0));
72             ## $csd->{Gamma}=PDFArray(map { PDFNum($_) } (2.22218, 2.22218, 2.22218));
73            
74 0           $csd->{' stream'}='';
75            
76 0           my %cc=();
77            
78 0           foreach my $s (4,3,2,1) {
79 0           foreach my $v (4,3) {
80 0           foreach my $r (0..31) {
81 0           $csd->{' stream'}.=pack('CCC',map { $_*255 } namecolor('!'.sprintf('%02X',$r*255/31).sprintf('%02X',$s*255/4).sprintf('%02X',$v*255/4)));
  0            
82             }
83             }
84             }
85            
86 0           $csd->{' stream'}.="\x00" x 768;
87 0           $csd->{' stream'}=substr($csd->{' stream'},0,768);
88            
89 0           $self->add_elements(PDFName('DeviceRGB'),PDFNum(255),$csd);
90 0           $self->{' csd'}=$csd;
91            
92 0           return($self);
93             }
94            
95             =item $cs = PDF::API3::Compat::API2::Resource::ColorSpace::Indexed->new_api $api, $name
96            
97             Returns a indexed color-space object. This method is different from 'new' that
98             it needs an PDF::API3::Compat::API2-object rather than a Text::PDF::File-object.
99            
100             =cut
101            
102             sub new_api {
103 0     0 1   my ($class,$api,@opts)=@_;
104            
105 0           my $obj=$class->new($api->{pdf},@opts);
106 0           $self->{' api'}=$api;
107            
108 0           return($obj);
109             }
110            
111             1;
112            
113             __END__