gmail

2008-07-14 Thread ChrisC
Is it possible to access gmail from perl? If so, how would you go about it? Thanks, Jerry -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

PDF::API2, error "Can't call method "val".... when adding a picture to the PDF

2008-07-14 Thread ChrisC
I am not sure what is going on. It works, then it does not? Is there a solution for this? I have been able to find little to NO doc on this. use strict; . . . sub picture { my $picture = shift; my $xp = shift; my $yp = shift; my $sp = shift; $photo->image

Printing special characters

2008-07-16 Thread ChrisC
I need to print the COPYRIGHT symbol. How to go about it? Tried playing with the following: my $text; $text = chr(hex(0xa9)); print "CR *$text*\n"; But the script just dies. Thanks, Jerry -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http:/

PDF::API2

2008-12-12 Thread ChrisC
Hi! How to underline text using PDF::API2? Currently using following to print text: sub print_pdf_text { my $xp = shift; my $yp = shift; my $fnt = shift; my $Mfnt = shift; my $text = shift; $txt->font( $fnt, $Mfnt); $txt->translate( $xp, $yp -= 12 ); $txt