Lines Matching refs:image

73     private $image;
182 imagepng($this->image, $this->mapCacheIDToFilename(), 9);
356 * make basemap image.
360 $this->image = imagecreatetruecolor($this->width, $this->height);
390 Logger::debug("imagecopy tile into image: $destX, $destY", $this->tileSize);
392 $this->image,
431 $opts = ['http' => ['method' => "GET", 'header' => "Accept-language: en\r\n" . "User-Agent: $_UA\r\n" . "accept: image/png\r\n", 'request_fulluri' => true]];
510 $color = imagecolorallocate($this->image, 0, 0, 0);
511 $bgcolor = imagecolorallocate($this->image, 200, 200, 200);
571 $this->image,
583 $this->image,
594 $this->image,
602 $this->image,
619 $col = imagecolorallocatealpha($this->image, 255, 0, 0, .4 * 127);
674 // maybe draw the polygon to an in-memory image and use imagecopy, draw polygon in col., draw holes in bgcol?
695 // imagepolygon ($this->image, $extPoints, $i-1, $colour );
696 imagefilledpolygon($this->image, $extPoints, $i - 1, $colour);
708 imagesetthickness($this->image, 2);
726 // draw to image
727 imageline($this->image, $x1, $y1, $x2, $y2, $colour);
729 imagesetthickness($this->image, 1);
741 imagesetthickness($this->image, 2);
750 // draw to image
751 // imageellipse($this->image, $cx, $cy,$r, $r, $colour);
752 imagefilledellipse($this->image, $cx, $cy, $r, $r, $colour);
755 imagearc($this->image, $cx, $cy, $r, $r, 0, 359, $colour);
756 imagesetthickness($this->image, 1);
765 $col = imagecolorallocatealpha($this->image, 0, 0, 255, .4 * 127);
776 $col = imagecolorallocatealpha($this->image, 255, 0, 255, .4 * 127);
788 $textcolor = imagecolorallocate($this->image, 0, 0, 0);
789 $bgcolor = imagecolorallocate($this->image, 200, 200, 200);
792 $this->image,
795 imagesy($this->image) - imagesy($logoImg),
802 $this->image,
805 imagesy($this->image) - imagesy($logoImg) + 1,
810 $this->image,
813 imagesy($this->image) - imagesy($logoImg),
827 $this->image,
830 imagesy($this->image) - imagesy($iconImg),
838 $this->image,
841 imagesy($this->image) - ceil(imagesy($logoImg) / 2) + 1,
846 $this->image,
849 imagesy($this->image) - ceil(imagesy($logoImg) / 2),