1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-24 20:02:35 +01:00
BookStack/app/Image.php

22 lines
440 B
PHP
Raw Normal View History

<?php namespace BookStack;
2015-07-13 22:52:56 +02:00
use Images;
class Image extends Ownable
2015-07-13 22:52:56 +02:00
{
2015-08-16 01:18:22 +02:00
protected $fillable = ['name'];
/**
* 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-12-14 21:13:32 +01:00
public function getThumb($width, $height, $keepRatio = false)
{
2015-12-14 21:13:32 +01:00
return Images::getThumbnail($this, $width, $height, $keepRatio);
}
2015-07-13 22:52:56 +02:00
}