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/
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
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:/
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