Pimcore\Model\Asset\Image\Thumbnail::getRealHeight PHP Method

getRealHeight() public method

Get the real width of the generated thumbnail image in pixels. (when using high resolution option)
public getRealHeight ( ) : integer
return integer Height of the generated thumbnail image.
    public function getRealHeight()
    {
        if (!$this->realHeight) {
            $this->getDimensions();
        }
        return $this->realHeight;
    }