in reply to Re: Re: Re: Re: Understanding GD.pm
in thread Understanding GD.pm

I suspect that you're running into issues in GD.pm and dieing in the module. Before the above line put the following line to make sure the script sees your image file.
unless(-e "churchmiddle.jpg"){ print "can't see the image"; }
Unless churchmiddle.jpg is sitting in the directory with the script GD will die complaining about undefined values.

Replies are listed 'Best First'.
Re: Re:^5 Understanding GD.pm
by cal (Beadle) on Oct 31, 2002 at 20:39 UTC
    Thanks so much, Well it was not seeing the image. Now it is, but no change in end results. Cal