"Clint" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I was able to get it fixed. Here's what I did in case someone else runs
into
> the same problem:
>
> Changed from these lines:
> my $image = new GD::Image(401,201); (btw: this line is different than
what
> is found in the text
I was able to get it fixed. Here's what I did in case someone else runs into
the same problem:
Changed from these lines:
my $image = new GD::Image(401,201); (btw: this line is different than what
is found in the text)
$image->trueColor();
to these lines:
my $image = new GD::Image->new(401,20
I am new to Perl and trying to learn graphics by the examples given in Shaun
Wallace's Perl Graphics Programming. I'm using Perl 5.8 and have installed
GD and GD::Graph using CPAN. I've checked to verify both modules are
installed using a "findmodules" script I found elsewhere, and here is a