JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "GammaCommand.php"
Full Path: /var/www/laravel_filter/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GammaCommand.php
File size: 473 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Intervention\Image\Imagick\Commands;
use Intervention\Image\Commands\AbstractCommand;
class GammaCommand extends AbstractCommand
{
/**
* Applies gamma correction to a given image
*
* @param \Intervention\Image\Image $image
* @return boolean
*/
public function execute($image)
{
$gamma = $this->argument(0)->type('numeric')->required()->value();
return $image->getCore()->gammaImage($gamma);
}
}