You are here

public function ImagemagickToolkit::getHeight in ImageMagick 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::getHeight()
  2. 8 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::getHeight()

Returns the height of the image.

Return value

int|null The height of the image, or NULL if the image is invalid.

Overrides ImageToolkitInterface::getHeight

File

src/Plugin/ImageToolkit/ImagemagickToolkit.php, line 1005

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

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