function CropImageEffect::applyEffect

Same name and namespace in other branches
  1. 8.9.x core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php \Drupal\image\Plugin\ImageEffect\CropImageEffect::applyEffect()
  2. 10 core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php \Drupal\image\Plugin\ImageEffect\CropImageEffect::applyEffect()
  3. 11.x core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php \Drupal\image\Plugin\ImageEffect\CropImageEffect::applyEffect()

Overrides ResizeImageEffect::applyEffect

1 method overrides CropImageEffect::applyEffect()
ScaleAndCropImageEffect::applyEffect in core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php
Applies an image effect to the image object.

File

core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php, line 22

Class

CropImageEffect
Crops an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

public function applyEffect(ImageInterface $image) {
    [
        $x,
        $y,
    ] = explode('-', $this->configuration['anchor']);
    $x = image_filter_keyword($x, $image->getWidth(), $this->configuration['width']);
    $y = image_filter_keyword($y, $image->getHeight(), $this->configuration['height']);
    if (!$image->crop($x, $y, $this->configuration['width'], $this->configuration['height'])) {
        $this->logger
            ->error('Image crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)', [
            '%toolkit' => $image->getToolkitId(),
            '%path' => $image->getSource(),
            '%mimetype' => $image->getMimeType(),
            '%dimensions' => $image->getWidth() . 'x' . $image->getHeight(),
        ]);
        return FALSE;
    }
    return TRUE;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.