BookStack\Image::getThumb PHP Method

getThumb() public method

Get a thumbnail for this image.
public getThumb ( integer $width, integer $height, boolean | false $keepRatio = false ) : string
$width integer
$height integer
$keepRatio boolean | false
return string
    public function getThumb($width, $height, $keepRatio = false)
    {
        return Images::getThumbnail($this, $width, $height, $keepRatio);
    }