DrawEllipseTrait.php in Image Effects 8
File
src/Plugin/ImageToolkit/Operation/DrawEllipseTrait.php
View source
<?php
namespace Drupal\image_effects\Plugin\ImageToolkit\Operation;
trait DrawEllipseTrait {
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.',
],
];
}
}