Gc\Media\Image::getSizeByFixedWidth PHP Method

getSizeByFixedWidth() protected method

Get fixed width
protected getSizeByFixedWidth ( integer $newWidth ) : double
$newWidth integer New width
return double
    protected function getSizeByFixedWidth($newWidth)
    {
        $ratio = $this->height / $this->width;
        $newHeight = $newWidth * $ratio;
        return floor($newHeight);
    }