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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
#=======================================================================
# ____ ____ _____ _ ____ ___ ____
# | _ \| _ \| ___| _ _ / \ | _ \_ _| |___ \
# | |_) | | | | |_ (_) (_) / _ \ | |_) | | __) |
# | __/| |_| | _| _ _ / ___ \| __/| | / __/
# |_| |____/|_| (_) (_) /_/ \_\_| |___| |_____|
#
# A Perl Module Chain to faciliate the Creation and Modification
# of High-Quality "Portable Document Format (PDF)" Files.
#
# Copyright 1999-2005 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: ExtGState.pm,v 1.8 2005/03/14 22:01:06 fredo Exp $
#
#=======================================================================
package PDF::API2::Resource::ExtGState;
BEGIN {
use strict;
use PDF::API2::Resource;
use PDF::API2::Basic::PDF::Utils;
use Math::Trig;
use PDF::API2::Util;
use vars qw(@ISA $VERSION);
@ISA = qw(PDF::API2::Resource);
( $VERSION ) = '$Revision: 1.8 $' =~ /Revision: (\S+)\s/; # $Date: 2005/03/14 22:01:06 $
}
no warnings qw[ deprecated recursion uninitialized ];
=head1 NAME
PDF::API2::Resource::ExtGState - Extgstate object for PDF::API2
=head1 SYNOPSIS
$egs = PDF::API2::Resource::ExtGState->new @parameters
Returns a new extgstate object (called from $pdf->extgstate).
=cut
sub new {
my ($class,$pdf,$key)=@_;
my $self = $class->SUPER::new($pdf,$key);
$self->{Type}=PDFName('ExtGState');
return($self);
}
=item $font = PDF::API2::Resource::ExtGState->new_api $api, $name
Returns a egstate-font 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);
}
=item $egs->strokeadjust $boolean
=cut
sub strokeadjust {
my ($self,$var)=@_;
$self->{SA}=PDFBool($var);
return($self);
}
=item $egs->strokeoverprint $boolean
=cut
sub strokeoverprint {
my ($self,$var)=@_;
$self->{OP}=PDFBool($var);
return($self);
}
=item $egs->filloverprint $boolean
=cut
sub filloverprint {
my ($self,$var)=@_;
$self->{op}=PDFBool($var);
return($self);
}
=item $egs->overprintmode $num
=cut
sub overprintmode {
my ($self,$var)=@_;
$self->{OPM}=PDFNum($var);
return($self);
}
=item $egs->blackgeneration $obj
=cut
sub blackgeneration {
my ($self,$obj)=@_;
$self->{BG}=$obj;
return($self);
}
=item $egs->blackgeneration2 $obj
=cut
sub blackgeneration2 {
my ($self,$obj)=@_;
$self->{BG2}=$obj;
return($self);
}
=item $egs->undercolorremoval $obj
=cut
sub undercolorremoval {
my ($self,$obj)=@_;
$self->{UCR}=$obj;
return($self);
}
=item $egs->undercolorremoval2 $obj
=cut
sub undercolorremoval2 {
my ($self,$obj)=@_;
$self->{UCR2}=$obj;
return($self);
}
=item $egs->transfer $obj
=cut
sub transfer {
my ($self,$obj)=@_;
$self->{TR}=$obj;
return($self);
}
=item $egs->transfer2 $obj
=cut
sub transfer2 {
my ($self,$obj)=@_;
$self->{TR2}=$obj;
return($self);
}
=item $egs->halftone $obj
=cut
sub halftone {
my ($self,$obj)=@_;
$self->{HT}=$obj;
return($self);
}
=item $egs->halftonephase $obj
=cut
sub halftonephase {
my ($self,$obj)=@_;
$self->{HTP}=$obj;
return($self);
}
=item $egs->smoothness $num
=cut
sub smoothness {
my ($self,$var)=@_;
$self->{SM}=PDFNum($var);
return($self);
}
=item $egs->font $font, $size
=cut
sub font {
my ($self,$font,$size)=@_;
$self->{Font}=PDFArray(PDFName($font->{' apiname'}),PDFNum($size));
return($self);
}
=item $egs->linewidth $size
=cut
sub linewidth {
my ($self,$var)=@_;
$self->{LW}=PDFNum($var);
return($self);
}
=item $egs->linecap $cap
=cut
sub linecap {
my ($self,$var)=@_;
$self->{LC}=PDFNum($var);
return($self);
}
=item $egs->linejoin $join
=cut
sub linejoin {
my ($self,$var)=@_;
$self->{LJ}=PDFNum($var);
return($self);
}
=item $egs->meterlimit $limit
=cut
sub meterlimit {
my ($self,$var)=@_;
$self->{ML}=PDFNum($var);
return($self);
}
=item $egs->dash @dash
=cut
sub dash {
my ($self,@dash)=@_;
$self->{ML}=PDFArray( map { PDFNum($_); } @dash );
return($self);
}
=item $egs->flatness $flat
=cut
sub flatness {
my ($self,$var)=@_;
$self->{FL}=PDFNum($var);
return($self);
}
=item $egs->renderingintent $intentName
=cut
sub renderingintent {
my ($self,$var)=@_;
$self->{FL}=PDFName($var);
return($self);
}
=item $egs->strokealpha $alpha
The current stroking alpha constant, specifying the
constant shape or constant opacity value to be used
for stroking operations in the transparent imaging model.
=cut
sub strokealpha {
my ($self,$var)=@_;
$self->{CA}=PDFNum($var);
return($self);
}
=item $egs->fillalpha $alpha
Same as strokealpha, but for nonstroking operations.
=cut
sub fillalpha {
my ($self,$var)=@_;
$self->{ca}=PDFNum($var);
return($self);
}
=item $egs->blendmode $blendname
=item $egs->blendmode $blendfunctionobj
The current blend mode to be used in the transparent
imaging model.
=cut
sub blendmode {
my ($self,$var)=@_;
if(ref($var)) {
$self->{BM}=$var;
} else {
$self->{BM}=PDFName($var);
}
return($self);
}
=item $egs->alphaisshape $boolean
The alpha source flag (alpha is shape), specifying
whether the current soft mask and alpha constant
are to be interpreted as shape values (true) or
opacity values (false).
=cut
sub alphaisshape {
my ($self,$var)=@_;
$self->{AIS}=PDFBool($var);
return($self);
}
=item $egs->textknockout $boolean
The text knockout flag, which determines the behavior
of overlapping glyphs within a text object in the
transparent imaging model.
=cut
sub textknockout {
my ($self,$var)=@_;
$self->{TK}=PDFBool($var);
return($self);
}
=item $egs->transparency $t
The graphics tranparency , with 0 being fully opaque and 1 being fully transparent.
This is a convenience method setting proper values for strokeaplha and fillalpha.
=cut
sub transparency {
my ($self,$var)=@_;
$self->strokealpha(1-$var);
$self->fillalpha(1-$var);
return($self);
}
=item $egs->opacity $op
The graphics opacity , with 1 being fully opaque and 0 being fully transparent.
This is a convenience method setting proper values for strokeaplha and fillalpha.
=cut
sub opacity {
my ($self,$var)=@_;
$self->strokealpha($var);
$self->fillalpha($var);
return($self);
}
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: ExtGState.pm,v $
Revision 1.8 2005/03/14 22:01:06 fredo
upd 2005
Revision 1.7 2004/12/16 00:30:53 fredo
added no warn for recursion
Revision 1.6 2004/06/15 09:14:41 fredo
removed cr+lf
Revision 1.5 2004/06/07 19:44:36 fredo
cleaned out cr+lf for lf
Revision 1.4 2003/12/08 13:05:33 Administrator
corrected to proper licencing statement
Revision 1.3 2003/11/30 17:28:55 Administrator
merged into default
Revision 1.2.2.1 2003/11/30 16:56:35 Administrator
merged into default
Revision 1.2 2003/11/30 11:44:49 Administrator
added CVS id/log
=cut
|