If you are just producing html, let whatever browser is rendering it worry about printing. | [reply] |
Thankyou for your response.
I want to control the content that is printed. If i use a browser to print then it will contain URL and other irrelative information. Will i be best suited using a module to interact with a word processing program (eg msword). Thanks again..
| [reply] |
See my reply, I suggest creating one of those formats on the fly and returning it to the user so he may use the appropiate viewer to print.
| [reply] |
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 | [reply] |
For the most "precision", this is probably the order you should use: IMAGE, PDF, [DOC | RTC | SXW]
| [reply] |
create an image or PDF-based sheet of text from perl/MySQL? How?
| [reply] |
Most implementations of sql databases, MySQL in my experience, are poorly suited for storing images. Since you will be serving these images through CGI, I would suggest storing the URI of image in the so that you can use that string as a key value.
| [reply] |