protected function DrawLineTrait::arguments in Image Effects 8
Same name and namespace in other branches
- 8.3 src/Plugin/ImageToolkit/Operation/DrawLineTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\DrawLineTrait::arguments()
- 8.2 src/Plugin/ImageToolkit/Operation/DrawLineTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\DrawLineTrait::arguments()
File
- src/
Plugin/ ImageToolkit/ Operation/ DrawLineTrait.php, line 13
Class
- DrawLineTrait
- Base trait for image_effects DrawLine operations.
Namespace
Drupal\image_effects\Plugin\ImageToolkit\OperationCode
protected function arguments() {
return [
'x1' => [
'description' => 'x-coordinate for first point.',
],
'y1' => [
'description' => 'y-coordinate for first point.',
],
'x2' => [
'description' => 'x-coordinate for second point.',
],
'y2' => [
'description' => 'y-coordinate for second point.',
],
'color' => [
'description' => 'The line color, in RGBA format.',
],
];
}