Net::CUPS::Destination(3pm) | User Contributed Perl Documentation | Net::CUPS::Destination(3pm) |
Net::CUPS::Destination - CUPS Destination Object
use Net::CUPS::Destination; my $printer = $cups->getDestination( "lj4200dn" ); my $name = $printer->getName(); my @options = $printer->getOptions(); my $jobid = $printer->printFile( $filename, $title );
Net::CUPS is an object oriented interface to the Common Unix Printing System.
Net::CUPS::Destination is an abstraction of the concept of a destination in CUPS. Destinations will most likely be a printer, but it can be any type of target in which a file is sent for processing.
Method to add another option name/value pair to the destination.
Method to chancel a job sent to this destination.
Provides the description string associated with this printer.
Utility method for returning the last error that occurred.
Method to return the name of the destination.
Method to get a specific job as a hash of attributes.
This method will return an array of job identifiers. $whose is 0 for all users and 1 is just for the selected user. $scope is -1 for all jobs, 0 for active jobs and 1 for completed jobs.
This utility method will return the value of the selected option.
This method will return an array of the options currently set on the destination.
I know this is the method that you have been looking for. This is what you will use to send a file to handled by the destination. You must provide the name of the file and a title for the job.
This function returns the device URI of a destination. For example, a network printer might appear as socket://192.168.1.1
This function returns the state of a destination. The value is an enumeration type with 3 meaning 'idle', 4 'processing' and 5 'stopped'.
Net::CUPS, Net::CUPS::PPD, Net::CUPS::IPP
Net::CUPS is currently maintained by Stefan Seifert <NINE@cpan.org>. The Github repository for this project is at <https://github.com/niner/perl-Net-CUPS>. Pull requests are welcome.
Dracken Technology, Inc. (http://www.dracken.com/)
Copyright (c) 2003-2005 David Hageman
Copyright (c) 2006-2009 Dracken Technology, Inc.
All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
CUPS, the Common UNIX Printing System, the CUPS logo, and ESP Print Pro are the trademark property of Easy Software Products.
2022-10-19 | perl v5.36.0 |