Pimcore\Model\Asset\Video\ImageThumbnail::getRealHeight PHP Метод

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

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