Pimcore\Model\Asset\Document\ImageThumbnail::getHeight PHP Метод

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

Get the width of the generated thumbnail image in pixels.
public getHeight ( ) : integer
Результат integer Height of the generated thumbnail image.
    public function getHeight()
    {
        if (!$this->height) {
            $this->getDimensions();
        }
        return $this->height;
    }