You are here

protected function Emboss::process in Imagick 8

File

src/Plugin/ImageToolkit/Operation/imagick/Emboss.php, line 37

Class

Emboss
Defines imagick emboss operation.

Namespace

Drupal\imagick\Plugin\ImageToolkit\Operation\imagick

Code

protected function process(Imagick $resource, array $arguments) {
  return $resource
    ->embossImage($arguments['radius'], $arguments['sigma']);
}