BookStack/app/Image.php

25 lines
411 B
PHP
Raw Normal View History

2015-07-13 20:52:56 +00:00
<?php
namespace BookStack;
2015-07-13 20:52:56 +00:00
use Images;
class Image
2015-07-13 20:52:56 +00:00
{
use Ownable;
2015-08-15 23:18:22 +00:00
protected $fillable = ['name'];
/**
* Get a thumbnail for this image.
* @param int $width
* @param int $height
* @param bool|false $hardCrop
*/
public function getThumb($width, $height, $hardCrop = false)
{
Images::getThumbnail($this, $width, $height, $hardCrop);
}
2015-07-13 20:52:56 +00:00
}