in reply to Printing with Perl

I have a releated question which, like this one, is really only tangentially a perl question: I have several perl and mod_perl driven online MySQL databases. People want to print mailing labels, which requires fairly percise formated output. So far I've just been dumping data to tab delemited sets so people can import and print labels locally. Is there a good reliable module/routine/method for creating reliably accurate and percise formatted output, something like creating an RTF document on the fly?? -- d

Replies are listed 'Best First'.
Re^2: Printing with Perl
by BUU (Prior) on Aug 10, 2004 at 20:25 UTC
    For the most "precision", this is probably the order you should use: IMAGE, PDF, [DOC | RTC | SXW]
      create an image or PDF-based sheet of text from perl/MySQL? How?