Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pdf::api2::resource::extgstate(3pm) [debian man page]

PDF::API2::Resource::ExtGState(3pm)			User Contributed Perl Documentation		       PDF::API2::Resource::ExtGState(3pm)

NAME
PDF::API2::Resource::ExtGState - extgate support for PDF::API2 METHODS
$egs = PDF::API2::Resource::ExtGState->new @parameters Returns a new extgstate object (called from $pdf->extgstate). $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. $egs->strokeadjust $boolean $egs->strokeoverprint $boolean $egs->filloverprint $boolean $egs->overprintmode $num $egs->blackgeneration $obj $egs->blackgeneration2 $obj $egs->undercolorremoval $obj $egs->undercolorremoval2 $obj $egs->transfer $obj $egs->transfer2 $obj $egs->halftone $obj $egs->halftonephase $obj $egs->smoothness $num $egs->font $font, $size $egs->linewidth $size $egs->linecap $cap $egs->linejoin $join $egs->meterlimit $limit $egs->dash @dash $egs->flatness $flat $egs->renderingintent $intentName $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. $egs->fillalpha $alpha Same as strokealpha, but for nonstroking operations. $egs->blendmode $blendname $egs->blendmode $blendfunctionobj The current blend mode to be used in the transparent imaging model. $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). $egs->textknockout $boolean The text knockout flag, which determines the behavior of overlapping glyphs within a text object in the transparent imaging model. $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. $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. AUTHOR
alfred reibenschuh perl v5.14.2 2014-03-09 PDF::API2::Resource::ExtGState(3pm)

Check Out this Related Man Page

PDF::API2::Util(3pm)					User Contributed Perl Documentation				      PDF::API2::Util(3pm)

NAME
PDF::API2::Util - utility package for often use methods across the package. PREDEFINED PAPERSIZES
%sizes = getPaperSizes(); Will retrieve the registered paper sizes of PDF::API2. print Dumper(\%sizes); $VAR1={ '4a' => [ 4760 , 6716 ], '2a' => [ 3368 , 4760 ], 'a0' => [ 2380 , 3368 ], 'a1' => [ 1684 , 2380 ], 'a2' => [ 1190 , 1684 ], 'a3' => [ 842 , 1190 ], 'a4' => [ 595 , 842 ], 'a5' => [ 421 , 595 ], 'a6' => [ 297 , 421 ], '4b' => [ 5656 , 8000 ], '2b' => [ 4000 , 5656 ], 'b0' => [ 2828 , 4000 ], 'b1' => [ 2000 , 2828 ], 'b2' => [ 1414 , 2000 ], 'b3' => [ 1000 , 1414 ], 'b4' => [ 707 , 1000 ], 'b5' => [ 500 , 707 ], 'b6' => [ 353 , 500 ], 'letter' => [ 612 , 792 ], 'broadsheet' => [ 1296 , 1584 ], 'ledger' => [ 1224 , 792 ], 'tabloid' => [ 792 , 1224 ], 'legal' => [ 612 , 1008 ], 'executive' => [ 522 , 756 ], '36x36' => [ 2592 , 2592 ], }; PREDEFINED COLORS
See the source of PDF::API2::Resource::Colors for a complete list. Please Note: This is an amalgamation of the X11, SGML and (X)HTML specification sets. PREDEFINED GLYPH-NAMES See the file "uniglyph.txt" for a complete list. Please Note: You may notice that apart from the 'AGL/WGL4', names from the XML, (X)HTML and SGML specification sets have been included to enable interoperability towards PDF. perl v5.14.2 2011-03-10 PDF::API2::Util(3pm)
Man Page