Lines Matching refs:picture
7 $this->picture = imagecreatetruecolor($xSize, $ySize);
10 imagefilledrectangle($this->picture, 0, 0, $xSize, $ySize, $C_White);
11 if($transparent) imagecolortransparent($this->picture, $C_White);
77 …imagefilledrectangle($this->picture, round ( $X1 ), round ( $Y1 ), round ( $X2 ), round ( $Y2 ), $…
90 …imagecopymerge ($this->picture, $this->Layers [0], round ( min ( $X1, $X2 ) - 1 ), round ( min ( $…
237 imageline($this->picture,
242 imageline($this->picture, $point2->getX() - $radius, $Yi2,
246 imageline($this->picture,
251 imageline($this->picture,
270 imagefilledrectangle($this->picture,
275 imagefilledrectangle($this->picture,
418 imagesetpixel ( $this->picture,
452 $RGB2 = imagecolorat ( $this->picture, $point->getX(), $point->getY());
465 imagesetpixel($this->picture, $point->getX(), $point->getY(), $C_Aliased );
480 return (imagecolorallocate ($this->picture, $color->r, $color->g, $color->b ));
483 return imagecolorallocatealpha($this->picture,
496 return $this->picture;
517 imagettftext($this->picture, $fontSize, $angle,
526 imagettftext($this->picture, $fontSize, $angle,
570 imageline ( $this->picture, $X1, $Y1 - 1, $X2 - 1, $Y2 - 1, $C_Circle );
578 imagefilledpolygon($this->picture,
584 private $picture; variable in GDCanvas