You are here

protected function DrawRectangle::execute in Image Effects 8.2

Same name in this branch
  1. 8.2 src/Plugin/ImageToolkit/Operation/gd/DrawRectangle.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\gd\DrawRectangle::execute()
  2. 8.2 src/Plugin/ImageToolkit/Operation/imagemagick/DrawRectangle.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\imagemagick\DrawRectangle::execute()
Same name and namespace in other branches
  1. 8.3 src/Plugin/ImageToolkit/Operation/imagemagick/DrawRectangle.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\imagemagick\DrawRectangle::execute()
  2. 8 src/Plugin/ImageToolkit/Operation/imagemagick/DrawRectangle.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\imagemagick\DrawRectangle::execute()

File

src/Plugin/ImageToolkit/Operation/imagemagick/DrawRectangle.php, line 26

Class

DrawRectangle
Defines ImageMagick draw rectangle operation.

Namespace

Drupal\image_effects\Plugin\ImageToolkit\Operation\imagemagick

Code

protected function execute(array $arguments) {
  $arg = '';
  if ($arguments['fill_color']) {
    $arg .= '-fill ' . $this
      ->escapeArgument($arguments['fill_color']);
  }
  else {
    $arg .= '-fill none';
  }
  if ($arguments['border_color']) {
    $arg .= ' -stroke ' . $this
      ->escapeArgument($arguments['border_color']) . ' -strokewidth 1';
  }
  $a = $arguments['rectangle']
    ->getPoint('c_a');
  $b = $arguments['rectangle']
    ->getPoint('c_b');
  $c = $arguments['rectangle']
    ->getPoint('c_c');
  $d = $arguments['rectangle']
    ->getPoint('c_d');
  $this
    ->addArgument($arg . ' -draw ' . $this
    ->escapeArgument("polygon {$d[0]},{$d[1]} {$c[0]},{$c[1]} {$b[0]},{$b[1]} {$a[0]},{$a[1]}"));
  return TRUE;
}