You are here

protected function ImageCorner::execute in Image effect kit 8

Performs the actual manipulation on the image.

Image toolkit operation implementers must implement this method. This method is responsible for actually performing the operation on the image. When this method gets called, the implementer may assume all arguments, also the optional ones, to be available, validated and corrected.

Parameters

array $arguments: An associative array of arguments to be used by the toolkit operation.

Return value

bool TRUE if the operation was performed successfully, FALSE otherwise.

Overrides ImageToolkitOperationBase::execute

File

src/Plugin/ImageToolkit/Operation/gd/ImageCorner.php, line 51
Contains \Drupal\iek\Plugin\ImageToolkit\Operation\gd\ImageCorner.

Class

ImageCorner
Defines IEK - Corner operation.

Namespace

Drupal\iek\Plugin\ImageToolkit\Operation\gd

Code

protected function execute(array $arguments = []) {
  $data = $arguments;
  $width = $this
    ->getToolkit()
    ->getWidth();
  $height = $this
    ->getToolkit()
    ->getHeight();
  $radius = $data['radius'];

  // Finds unique color.
  do {
    $r = rand(0, 255);
    $g = rand(0, 255);
    $b = rand(0, 255);
  } while (imagecolorexact($this
    ->getToolkit()
    ->getResource(), $r, $g, $b) < 0);
  $new_width = $width;
  $new_height = $height;
  $img = imagecreatetruecolor($new_width, $new_height);
  $alphacolor = imagecolorallocatealpha($img, $r, $g, $b, 127);
  imagealphablending($img, FALSE);
  imagesavealpha($img, TRUE);
  imagefilledrectangle($img, 0, 0, $new_width, $new_height, $alphacolor);
  imagefill($img, 0, 0, $alphacolor);
  imagecopyresampled($img, $this
    ->getToolkit()
    ->getResource(), 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  imagearc($img, $radius - 1, $radius - 1, $radius * 2, $radius * 2, 180, 270, $alphacolor);
  imagefilltoborder($img, 0, 0, $alphacolor, $alphacolor);
  imagearc($img, $new_width - $radius, $radius - 1, $radius * 2, $radius * 2, 270, 0, $alphacolor);
  imagefilltoborder($img, $new_width - 1, 0, $alphacolor, $alphacolor);
  imagearc($img, $radius - 1, $new_height - $radius, $radius * 2, $radius * 2, 90, 180, $alphacolor);
  imagefilltoborder($img, 0, $new_height - 1, $alphacolor, $alphacolor);
  imagearc($img, $new_width - $radius, $new_height - $radius, $radius * 2, $radius * 2, 0, 90, $alphacolor);
  imagefilltoborder($img, $new_width - 1, $new_height - 1, $alphacolor, $alphacolor);
  imagealphablending($img, TRUE);
  imagecolortransparent($img, $alphacolor);

  // Resizes image down.
  $dst = imagecreatetruecolor($width, $height);
  imagealphablending($dst, FALSE);
  imagesavealpha($dst, TRUE);
  imagefilledrectangle($dst, 0, 0, $width, $height, $alphacolor);
  imagecopyresampled($dst, $img, 0, 0, 0, 0, $width, $height, $new_width, $new_height);
  imagedestroy($this
    ->getToolkit()
    ->getResource());

  // Update image object.
  $this
    ->getToolkit()
    ->setResource($dst);
  return TRUE;
}