1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-01-31 20:21:36 +01:00
BookStack/app/Image.php

22 lines
440 B
PHP
Raw Normal View History

<?php namespace BookStack;
2015-07-13 21:52:56 +01:00
use Images;
class Image extends Ownable
2015-07-13 21:52:56 +01:00
{
2015-08-16 00:18:22 +01:00
protected $fillable = ['name'];
/**
* Get a thumbnail for this image.
* @param int $width
* @param int $height
2015-12-14 20:13:32 +00:00
* @param bool|false $keepRatio
2015-12-09 22:30:55 +00:00
* @return string
*/
2015-12-14 20:13:32 +00:00
public function getThumb($width, $height, $keepRatio = false)
{
2015-12-14 20:13:32 +00:00
return Images::getThumbnail($this, $width, $height, $keepRatio);
}
2015-07-13 21:52:56 +01:00
}