Lines Matching +defs:text +defs:height
582 function drawText($fontSize, $angle, Point $point, Color $color, $fontName, $text, ShadowProperties $shadowProperties) {
591 $fontName, $text
600 $gdColor, $fontName, $text
604 function drawCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties, $width = null) {
606 $width = $height;
609 $Step = 360 / (2 * M_PI * max($width, $height));
612 $X = cos($i * M_PI / 180) * $height + $center->getX();
623 public function drawFilledCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties, $width = null) {
625 $width = $height;
629 $Step = 360 / (2 * M_PI * max($width, $height));
632 $X1 = cos($i * M_PI / 180) * $height + $center->getX();
634 $X2 = cos((180 - $i) * M_PI / 180) * $height + $center->getX();
648 if(($Y1 - 1) > $center->getY() - max($width, $height)) {