debug on the demo server
This commit is contained in:
@@ -198,12 +198,15 @@
|
|||||||
{
|
{
|
||||||
$this->XSize = $XSize;
|
$this->XSize = $XSize;
|
||||||
$this->YSize = $YSize;
|
$this->YSize = $YSize;
|
||||||
|
echo "before imagecreatetruecolor\n";
|
||||||
$this->Picture = imagecreatetruecolor($XSize,$YSize);
|
$this->Picture = imagecreatetruecolor($XSize,$YSize);
|
||||||
|
echo "before this->AllocateColor\n";
|
||||||
$C_White =$this->AllocateColor($this->Picture,255,255,255);
|
$C_White =$this->AllocateColor($this->Picture,255,255,255);
|
||||||
|
echo "before imagefilledrectangle\n";
|
||||||
imagefilledrectangle($this->Picture,0,0,$XSize,$YSize,$C_White);
|
imagefilledrectangle($this->Picture,0,0,$XSize,$YSize,$C_White);
|
||||||
|
echo "before imagecolortransparent";
|
||||||
imagecolortransparent($this->Picture,$C_White);
|
imagecolortransparent($this->Picture,$C_White);
|
||||||
|
echo "after imagecolortransparent";
|
||||||
$this->setFontProperties("tahoma.ttf",8);
|
$this->setFontProperties("tahoma.ttf",8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user