Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ScaleAndCropImageEffect.php

function ScaleAndCropImageEffect::applyEffect

Overrides CropImageEffect::applyEffect

File

core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php, line 23

Class

ScaleAndCropImageEffect
Scales and crops an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

public function applyEffect(ImageInterface $image) {
    $width = (int) $this->configuration['width'];
    $height = (int) $this->configuration['height'];
    $scale = max($width / $image->getWidth(), $height / $image->getHeight());
    [
        $x,
        $y,
    ] = explode('-', $this->configuration['anchor']);
    $x = Image::getKeywordOffset($x, (int) round($image->getWidth() * $scale), $width);
    $y = Image::getKeywordOffset($y, (int) round($image->getHeight() * $scale), $height);
    if (!$image->apply('scale_and_crop', [
        'x' => $x,
        'y' => $y,
        'width' => $width,
        'height' => $height,
    ])) {
        $this->logger
            ->error('Image scale and 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;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal