Commit 397cd8d1 authored by Nicolas Widart's avatar Nicolas Widart

Adding resize implementation

parent 17839504
......@@ -48,8 +48,12 @@ return [
// 'transparency' => 10
// ],
// 'orientate' => [],
'pixelate' => [
'size' => 12
// 'pixelate' => [
// 'size' => 12
// ],
'resize' => [
'width' => 500,
'height' => 100,
],
]
];
<?php namespace Modules\Media\Image\Intervention\Manipulations;
use Modules\Media\Image\ImageHandlerInterface;
class Resize implements ImageHandlerInterface
{
private $defaults = [
'width' => 200,
'height' => 200,
];
/**
* Handle the image manipulation request
* @param \Intervention\Image\Image $image
* @param array $options
* @return \Intervention\Image\Image
*/
public function handle($image, $options)
{
$options = array_merge($this->defaults, $options);
$callback = isset($options['callback']) ? $options['callback'] : null;
return $image->resize($options['width'], $options['height'], $callback);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment