Commit 971c531b authored by Nicolas Widart's avatar Nicolas Widart

Add flip implementation

parent 803dc578
......@@ -22,8 +22,11 @@ return [
// 'green' => 0,
// 'blue' => 99
// ],
'contrast' => [
'level' => 65
]
// 'contrast' => [
// 'level' => 65
// ],
'flip' => [
'mode' => 'h'
],
]
];
<?php namespace Modules\Media\Image\Intervention\Manipulations;
use Modules\Media\Image\ImageHandlerInterface;
class Flip implements ImageHandlerInterface
{
private $defaults = [
'mode' => 'h'
];
/**
* 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);
return $image->flip($options['mode']);
}
}
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