Gc\Media\Image::getSizeByFixedWidth PHP Méthode

getSizeByFixedWidth() protected méthode

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