You are here

trait DrawEllipseTrait in Image Effects 8

Same name and namespace in other branches
  1. 8.3 src/Plugin/ImageToolkit/Operation/DrawEllipseTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\DrawEllipseTrait
  2. 8.2 src/Plugin/ImageToolkit/Operation/DrawEllipseTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\DrawEllipseTrait

Base trait for image_effects DrawEllipse operations.

Hierarchy

2 files declare their use of DrawEllipseTrait
DrawEllipse.php in src/Plugin/ImageToolkit/Operation/gd/DrawEllipse.php
DrawEllipse.php in src/Plugin/ImageToolkit/Operation/imagemagick/DrawEllipse.php

File

src/Plugin/ImageToolkit/Operation/DrawEllipseTrait.php, line 8

Namespace

Drupal\image_effects\Plugin\ImageToolkit\Operation
View source
trait DrawEllipseTrait {

  /**
   * {@inheritdoc}
   */
  protected function arguments() {
    return [
      'cx' => [
        'description' => 'x-coordinate of the center.',
      ],
      'cy' => [
        'description' => 'y-coordinate of the center.',
      ],
      'width' => [
        'description' => 'The ellipse width.',
      ],
      'height' => [
        'description' => 'The ellipse height.',
      ],
      'color' => [
        'description' => 'The fill color, in RGBA format.',
      ],
    ];
  }

}

Members