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

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

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