Cheetah
GammaCommand.php
Go to the documentation of this file.
1 <?php
2 
4 
6 {
13  public function execute($image)
14  {
15  $gamma = $this->argument(0)->type('numeric')->required()->value();
16 
17  return imagegammacorrect($image->getCore(), 1, $gamma);
18  }
19 }
Intervention\Image\Gd\Commands
Definition: BackupCommand.php:3
php
Intervention\Image\Gd\Commands\GammaCommand\execute
execute($image)
Definition: GammaCommand.php:13
Intervention\Image\Gd\Commands\GammaCommand
Definition: GammaCommand.php:6
Intervention\Image\Commands\AbstractCommand\argument
argument($key)
Definition: AbstractCommand.php:45
Intervention\Image\Commands\AbstractCommand
Definition: AbstractCommand.php:6