You are here

public function CropImageEffect::applyEffect in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php \Drupal\image\Plugin\ImageEffect\CropImageEffect::applyEffect()
  2. 9 core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php \Drupal\image\Plugin\ImageEffect\CropImageEffect::applyEffect()

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;
}