Are the graphs true-color? If so, this is might be related to bug 15374 (
http://rt.cpan.org/
Ticket/Display.html?id=15374), which is fixed in the current release. In any case, can you
update to 1.4308 and see if the bug persists?
On Tue Dec 05 20:30:03 2006, telebrett wrote:
Show quoted text> When running the exact same perl code under the command line, and then
> under a website running mod_perl the images change. Specifically the
> background colour of the image generated under mod_perl always has a
> background colour of black.
>
> Adding the following line fixed this issue.
>
> sub init_graph
> {
> my $self = shift;
>
> ++
> $self->{graph}->filledRectangle(0,0,$self->{width},$self-
> >{height},$self->set_clr(_rgb($self->{bgclr})));
>
> ...