Commit cc0dd28d authored by Nicolas Widart's avatar Nicolas Widart

Adding opacity implementation

parent 4e610241
......@@ -40,9 +40,12 @@ return [
// }
// ]
// 'invert' => [],
'limitColors' => [
'count' => 90,
'matte' => '#ff9900'
// 'limitColors' => [
// 'count' => 90,
// 'matte' => '#ff9900'
// ],
'opacity' => [
'transparency' => 10
],
]
];
<?php namespace Modules\Media\Image\Intervention\Manipulations;
use Modules\Media\Image\ImageHandlerInterface;
class Opacity implements ImageHandlerInterface
{
private $defaults = [
'transparency' => 50
];
/**
* 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->opacity($options['transparency']);
}
}
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