public function Textimage::getHeight in Textimage 8.3
Same name and namespace in other branches
- 8.4 src/Textimage.php \Drupal\textimage\Textimage::getHeight()
Returns the height of the Textimage.
Return value
int|null The height of the Textimage, or NULL if not available.
Overrides TextimageInterface::getHeight
1 call to Textimage::getHeight()
- Textimage::setCached in src/
Textimage.php - Cache Textimage data.
File
- src/
Textimage.php, line 428
Class
- Textimage
- Provides a Textimage.
Namespace
Drupal\textimageCode
public function getHeight() {
return $this->processed ? $this->height : NULL;
}