Imbo\Image\Transformation\SmartSize::getGrowFactor PHP Method

getGrowFactor() private method

Get the factor by which the crop area is grown in order to include stuff around the POI. The larger the factor, the wider the crop.
private getGrowFactor ( $closeness )
$closeness Closeness of crop
    private function getGrowFactor($closeness)
    {
        switch ($closeness) {
            case 'close':
                return 1;
            case 'wide':
                return 1.6;
            default:
                return 1.25;
        }
    }