Re: Learning Graphics - Problem with Hello World Example / Fixed it!

2003-06-05 Thread Todd Wade
"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

Re: Learning Graphics - Problem with Hello World Example / Fixed it!

2003-06-04 Thread Clint
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

Learning Graphics - Problem with Hello World Example

2003-06-04 Thread Clint
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