Lines Matching defs:picture
5 $this->picture = imagecreatetruecolor($xSize, $ySize);
8 imagefilledrectangle($this->picture, 0, 0, $xSize, $ySize, $C_White);
9 if($transparent) imagecolortransparent($this->picture, $C_White);
81 imagefilledrectangle($this->picture, round($X1), round($Y1), round($X2), round($Y2), $C_Rectangle);
94 imagecopymerge($this->picture, $this->Layers [0], round(min($X1, $X2) - 1), round(min($Y1, $Y2) - 1), 0, 0, $LayerWidth, $LayerHeight, $alpha);
260 $this->picture,
267 $this->picture, $point2->getX() - $radius, $Yi2,
273 $this->picture,
280 $this->picture,
309 $this->picture,
316 $this->picture,
484 $this->picture,
519 $RGB2 = imagecolorat($this->picture, $point->getX(), $point->getY());
532 imagesetpixel($this->picture, $point->getX(), $point->getY(), $C_Aliased);
547 return (imagecolorallocate($this->picture, $color->r, $color->g, $color->b));
550 $this->picture,
564 return $this->picture;
587 $this->picture, $fontSize, $angle,
598 $this->picture, $fontSize, $angle,
649 imageline($this->picture, $X1, $Y1 - 1, $X2 - 1, $Y2 - 1, $C_Circle);
658 $this->picture,
665 private $picture;