ContrastTrait.php in Image Effects 8
File
src/Plugin/ImageToolkit/Operation/ContrastTrait.php
View source
<?php
namespace Drupal\image_effects\Plugin\ImageToolkit\Operation;
trait ContrastTrait {
protected function arguments() {
return [
'level' => [
'description' => 'The contrast level.',
],
];
}
protected function validateArguments(array $arguments) {
if (!is_numeric($arguments['level']) || !is_int($arguments['level'] + 5) || $arguments['level'] < -100 || $arguments['level'] > 100) {
throw new \InvalidArgumentException("Invalid level ('{$arguments['level']}') specified for the image 'contrast' operation");
}
return $arguments;
}
}