| PDF-API2 documentation | Contained in the PDF-API2 distribution. |
PDF::API2::Resource
Returns a resource object.
Returns a resource object. This method is different from 'new' that it needs an PDF::API2-object rather than a Text::PDF::File-object.
Returns or sets the Name of the resource.
Alfred Reibenschuh
| PDF-API2 documentation | Contained in the PDF-API2 distribution. |
package PDF::API2::Resource; our $VERSION = '2.019'; use base 'PDF::API2::Basic::PDF::Dict'; use PDF::API2::Util; use PDF::API2::Basic::PDF::Utils; no warnings qw[ deprecated recursion uninitialized ];
sub new { my ($class,$pdf,$name) = @_; my $self; $class = ref $class if ref $class; $self=$class->SUPER::new(); $pdf->new_obj($self) unless($self->is_obj($pdf)); $self->name($name || pdfkey()); $self->{' apipdf'}=$pdf; return($self); }
sub new_api { my ($class,$api,@opts)=@_; my $obj=$class->new($api->{pdf},@opts); $obj->{' api'}=$api; return($obj); }
sub name { my $self=shift @_; if(scalar @_ >0 && defined($_[0])) { $self->{Name}=PDFName($_[0]); } return($self->{Name}->val); } sub outobjdeep { my ($self, $fh, $pdf, %opts) = @_; return $self->SUPER::outobjdeep($fh, $pdf) if defined $opts{'passthru'}; foreach my $k (qw/ api apipdf /) { $self->{" $k"}=undef; delete($self->{" $k"}); } $self->SUPER::outobjdeep($fh, $pdf, %opts); } 1; __END__