diff --git a/libraries/chart/pChart/pChart.class b/libraries/chart/pChart/pChart.class index c407b7e2c..d2b43311c 100644 --- a/libraries/chart/pChart/pChart.class +++ b/libraries/chart/pChart/pChart.class @@ -198,12 +198,15 @@ { $this->XSize = $XSize; $this->YSize = $YSize; + echo "before imagecreatetruecolor\n"; $this->Picture = imagecreatetruecolor($XSize,$YSize); - + echo "before this->AllocateColor\n"; $C_White =$this->AllocateColor($this->Picture,255,255,255); + echo "before imagefilledrectangle\n"; imagefilledrectangle($this->Picture,0,0,$XSize,$YSize,$C_White); + echo "before imagecolortransparent"; imagecolortransparent($this->Picture,$C_White); - + echo "after imagecolortransparent"; $this->setFontProperties("tahoma.ttf",8); }