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