You are here

public function PositionedRectangle::getHeight in Image Effects 8.3

Same name and namespace in other branches
  1. 8 src/Component/PositionedRectangle.php \Drupal\image_effects\Component\PositionedRectangle::getHeight()
  2. 8.2 src/Component/PositionedRectangle.php \Drupal\image_effects\Component\PositionedRectangle::getHeight()

Gets the height of the rectangle.

Return value

int The height of the rectangle.

1 call to PositionedRectangle::getHeight()
PositionedRectangle::resize in src/Component/PositionedRectangle.php
Resizes the rectangle and any additional point.

File

src/Component/PositionedRectangle.php, line 263

Class

PositionedRectangle
Rectangle algebra class.

Namespace

Drupal\image_effects\Component

Code

public function getHeight() {
  return $this->height;
}