Network PDF Server YAFPC-Appliance 5.02 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Network PDF Server YAFPC-Appliance 5.02 (Default branch)
# 1  
Old 12-27-2007
Network PDF Server YAFPC-Appliance 5.02 (Default branch)

Image YAFPC-Appliance is a browser based management frontend for the PDF composer/printer/Mailer YAFPC. It comes with the General-Purpose Appliance System on a bootable CD in combination with an easy to use installation script. Once installed, any PC booted from this CD image can act as a PDF print server that provides an unlimited number of network shared virtual PDF printers. The system requirements are low; any older PC can be used. System configuration can be done via a Web browser from any workstation in the network. Virtual shared printers can be configured to apply letterheads, watermarks, cover pages, and appendixes to all printed documents. After printing, a document is sent to its owner by mail, can be accessed in a shared folder on the server, or can be stored in a shared network folder on some other machine. License: Shareware Changes:
Email was not sent if the limit for the attachment size was set to any value other than 0 (no limit).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Text::PDF::Page(3pm)					User Contributed Perl Documentation				      Text::PDF::Page(3pm)

NAME
Text::PDF::Page - Represents a PDF page, inherits from Text::PDF::Pages DESCRIPTION
Represents a page of output in PDF. It also keeps track of the content stream, any resources (such as fonts) being switched, etc. Page inherits from Pages due to a number of shared methods. They are really structurally quite different. INSTANCE VARIABLES
A page has various working variables: curstrm The currently open stream METHODS
Text::PDF::Page->new($pdf, $parent, $index) Creates a new page based on a pages object (perhaps the root object). The page is also added to the parent at this point, so pages are ordered in a PDF document in the order in which they are created rather than in the order they are closed. Only the essential elements in the page dictionary are created here, all others are either optional or can be inherited. The optional index value indicates the index in the parent list that this page should be inserted (so that new pages need not be appended) $p->add($str) Adds the string to the currently active stream for this page. If no stream exists, then one is created and added to the list of streams for this page. The slightly cryptic name is an aim to keep it short given the number of times people are likely to have to type it. $p->ship_out($pdf) Ships the page out to the given output file context perl v5.8.8 2006-09-09 Text::PDF::Page(3pm)