Newscoop\Image\ImageInterface::getHeight PHP Метод

getHeight() публичный Метод

Get height
public getHeight ( ) : integer
Результат integer
    public function getHeight();

Usage Example

Пример #1
0
 /**
  * Test if rendition fits image
  *
  * @param ImageInterface $image
  * @return bool
  */
 public function fits(ImageInterface $image)
 {
     return $this->specs === 'fit' || $image->getWidth() >= $this->width && $image->getHeight() >= $this->height;
 }