Lines Matching refs:shadowProperties

17 								 ShadowProperties $shadowProperties, $drawBorder = false,  argument
43 if ($shadowProperties->active) {
44 $this->drawFilledRectangle(new Point($X1 + $shadowProperties->xDistance,
45 $Y1 + $shadowProperties->yDistance),
46 new Point($X2 + $shadowProperties->xDistance,
47 $Y2 + $shadowProperties->yDistance),
48 $shadowProperties->color,
51 $shadowProperties->alpha);
52 if ($shadowProperties->blur != 0) {
53 $AlphaDecay = ($shadowProperties->alpha / $shadowProperties->blur);
55 for($i = 1; $i <= $shadowProperties->blur; $i ++)
56 $this->drawFilledRectangle(new Point($X1 + $shadowProperties->xDistance - $i / 2,
57 $Y1 + $shadowProperties->yDistance - $i / 2),
58 new Point($X2 + $shadowProperties->xDistance - $i / 2,
59 $Y2 + $shadowProperties->yDistance - $i / 2),
60 $shadowProperties->color,
63 $shadowProperties->alpha - $AlphaDecay * $i);
64 for($i = 1; $i <= $shadowProperties->blur; $i ++)
65 $this->drawFilledRectangle(new Point($X1 + $shadowProperties->xDistance + $i / 2,
66 $Y1 + $shadowProperties->yDistance + $i / 2),
67 new Point($X2 + $shadowProperties->xDistance + $i / 2,
68 $Y2 + $shadowProperties->xDistance + $i / 2),
69 $shadowProperties->color,
72 $shadowProperties->alpha - $AlphaDecay * $i);
104 …ner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shadowProperties) { argument
114 $shadowProperties);
121 $shadowProperties);
128 $shadowProperties);
135 $shadowProperties);
139 …int $point2, $radius, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shadowProperties) { argument
145 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
149 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
153 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
157 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
169 $shadowProperties);
176 $shadowProperties);
183 $shadowProperties);
190 $shadowProperties);
199 ShadowProperties $shadowProperties) { argument
258 $shadowProperties);
261 $shadowProperties);
264 $shadowProperties);
267 $shadowProperties);
288 $shadowProperties);
294 $shadowProperties);
300 $shadowProperties);
306 $shadowProperties);
311 … $point2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shadowProperties, Point $bound… argument
316 $color, $shadowProperties,
337 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
343 $color, $shadowProperties);
349 …oint $point2, $dotSize, $lineWidth, Color $color, ShadowProperties $shadowProperties, Point $bound… argument
367 $color, $shadowProperties);
374 $color, $shadowProperties);
386 …public function drawAntialiasPixel(Point $point, Color $color, ShadowProperties $shadowProperties,… argument
388 if ($shadowProperties->active) {
389 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance,
390 $point->getY() + $shadowProperties->yDistance),
391 $shadowProperties->color,
393 $shadowProperties->alpha);
394 if ($shadowProperties->blur != 0) {
395 $AlphaDecay = ($shadowProperties->alpha / $shadowProperties->blur);
397 for($i = 1; $i <= $shadowProperties->blur; $i ++)
398 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance - $i / 2,
399 $point->getY() + $shadowProperties->yDistance - $i / 2),
400 $shadowProperties->color,
402 $shadowProperties->alpha - $AlphaDecay * $i);
403 for($i = 1; $i <= $shadowProperties->blur; $i ++)
404 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance + $i / 2,
405 $point->getY() + $shadowProperties->yDistance + $i / 2),
406 $shadowProperties->color,
408 $shadowProperties->alpha - $AlphaDecay * $i);
513 …ntSize, $angle, Point $point, Color $color, $fontName, $text, ShadowProperties $shadowProperties) { argument
514 if ($shadowProperties->active) {
515 $gdShadowColor = $this->allocateColor($shadowProperties->color);
518 $point->getX() + $shadowProperties->xDistance,
519 $point->getY() + $shadowProperties->yDistance,
531 …function drawCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties, $wid… argument
543 $shadowProperties);
548 …illedCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties, $width = nul… argument
564 $shadowProperties);
567 $shadowProperties);