———#=======================================================================
# ____ ____ _____ _ ____ ___ ____
# | _ \| _ \| ___| _ _ / \ | _ \_ _| |___ \
# | |_) | | | | |_ (_) (_) / _ \ | |_) | | __) |
# | __/| |_| | _| _ _ / ___ \| __/| | / __/
# |_| |____/|_| (_) (_) /_/ \_\_| |___| |_____|
#
# A Perl Module Chain to faciliate the Creation and Modification
# of High-Quality "Portable Document Format (PDF)" Files.
#
# Copyright 1999-2004 Alfred Reibenschuh <areibens@cpan.org>.
#
#=======================================================================
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# $Id: Pattern.pm,v 1.2 2004/06/22 00:38:44 fredo Exp $
#
#=======================================================================
package
PDF::API2::Resource::Pattern;
BEGIN {
@ISA
=
qw(PDF::API2::Resource)
;
(
$VERSION
) =
'$Revision: 1.2 $'
=~ /Revision: (\S+)\s/;
# $Date: 2004/06/22 00:38:44 $
}
=item $cs = PDF::API2::Resource::Pattern->new $pdf, $key, %parameters
Returns a new pattern object. base class for all patterns.
=cut
sub
new {
my
(
$class
,
,
$key
,
%opts
)=
@_
;
$class
=
ref
$class
if
ref
$class
;
$self
=
$class
->SUPER::new(
,
$key
|| pdfkey());
->new_obj(
$self
)
unless
(
$self
->is_obj(
));
$self
->{Type}=PDFName(
'Pattern'
);
$self
->{
' apipdf'
}=
;
return
(
$self
);
}
=item $cs = PDF::API2::Resource::Pattern->new_api $api, $name
Returns a pattern object. This method is different from 'new' that
it needs an PDF::API2-object rather than a Text::PDF::File-object.
=cut
sub
new_api {
my
(
$class
,
$api
,
@opts
)=
@_
;
my
$obj
=
$class
->new(
$api
->{pdf},
@opts
);
$self
->{
' api'
}=
$api
;
return
(
$obj
);
}
sub
outobjdeep {
my
(
$self
,
@opts
) =
@_
;
foreach
my
$k
(
qw/ api apipdf /
) {
$self
->{
" $k"
}=
undef
;
delete
(
$self
->{
" $k"
});
}
$self
->SUPER::outobjdeep(
@opts
);
}
1;
__END__
=head1 AUTHOR
alfred reibenschuh
=head1 HISTORY
$Log: Pattern.pm,v $
Revision 1.2 2004/06/22 00:38:44 fredo
fixed ISA
Revision 1.1 2004/06/21 22:33:37 fredo
added basic pattern/shading handling
=cut