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

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

public getRealWidth ( ) : integer
Результат integer real Width of the generated thumbnail image. (when using high resolution option)
    public function getRealWidth()
    {
        if (!$this->realWidth) {
            $this->getDimensions();
        }
        return $this->realWidth;
    }