blenkhn has asked for the wisdom of the Perl Monks concerning the following question:

What other modules do you use to print to a printer? Other than win32::printer?

Replies are listed 'Best First'.
Re: instead of win32 printer
by Anonymous Monk on Oct 27, 2011 at 18:14 UTC
    I obviate the problem by delegating this to the operating system's printing facilities instead of a tight Perl integration. Most often I simply create a format intended for print output like HTML or PDF and have the user deal with it; very rarely I had call CUPS stack front-ends programs like kprinter or lp myself.