Pimcore\Model\Asset\Video\ImageThumbnail::getWidth PHP Method

getWidth() public method

public getWidth ( ) : integer
return integer Width of the generated thumbnail image.
    public function getWidth()
    {
        if (!$this->width) {
            $this->getDimensions();
        }
        return $this->width;
    }