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
|
package PDF::API2::Resource::ColorSpace;
use base 'PDF::API2::Basic::PDF::Array';
use strict;
no warnings qw[ deprecated recursion uninitialized ];
our $VERSION = '2.038'; # VERSION
use PDF::API2::Basic::PDF::Utils;
use PDF::API2::Util;
use Scalar::Util qw(weaken);
=head1 NAME
PDF::API2::Resource::ColorSpace - Base class for PDF color spaces
=head1 METHODS
=over
=item $cs = PDF::API2::Resource::ColorSpace->new $pdf, $key, %parameters
Returns a new colorspace object. base class for all colorspaces.
=cut
sub new {
my ($class,$pdf,$key,%opts)=@_;
$class = ref $class if ref $class;
my $self=$class->SUPER::new();
$pdf->new_obj($self) unless($self->is_obj($pdf));
$self->name($key || pdfkey());
$self->{' apipdf'}=$pdf;
weaken $self->{' apipdf'};
return($self);
}
=item $name = $res->name $name
Returns or sets the Name of the resource.
=cut
sub name {
my $self=shift @_;
if(scalar @_ >0 && defined($_[0])) {
$self->{' name'}=$_[0];
}
return($self->{' name'});
}
sub type {
my $self=shift @_;
if(scalar @_ >0 && defined($_[0])) {
$self->{' type'}=$_[0];
}
return($self->{' type'});
}
=item @param = $cs->param @param
Returns properly formatted color-parameters based on the colorspace.
=cut
sub param {
my $self=shift @_;
return(@_);
}
=back
=cut
1;
|