DrawEllipse.php in Image Effects 8
Same filename in this branch
Same filename and directory in other branches
File
src/Plugin/ImageToolkit/Operation/gd/DrawEllipse.phpView source
<?php
namespace Drupal\image_effects\Plugin\ImageToolkit\Operation\gd;
use Drupal\system\Plugin\ImageToolkit\Operation\gd\GDImageToolkitOperationBase;
use Drupal\image_effects\Plugin\ImageToolkit\Operation\DrawEllipseTrait;
/**
* Defines GD2 draw ellipse operation.
*
* @ImageToolkitOperation(
* id = "image_effects_gd_draw_ellipse",
* toolkit = "gd",
* operation = "draw_ellipse",
* label = @Translation("Draw ellipse"),
* description = @Translation("Draws on the image an ellipse of the specified color.")
* )
*/
class DrawEllipse extends GDImageToolkitOperationBase {
use GDOperationTrait;
use DrawEllipseTrait;
/**
* {@inheritdoc}
*/
protected function execute(array $arguments) {
$color = $this
->allocateColorFromRgba($arguments['color']);
return imagefilledellipse($this
->getToolkit()
->getResource(), $arguments['cx'], $arguments['cy'], $arguments['width'], $arguments['height'], $color);
}
}
Classes
Name | Description |
---|---|
DrawEllipse | Defines GD2 draw ellipse operation. |