ScaleAndCropImageEffect.php

Same filename and directory in other branches
  1. 9 core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php
  2. 8.9.x core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php
  3. 10 core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php

Namespace

Drupal\image\Plugin\ImageEffect

File

core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php

View source
<?php

namespace Drupal\image\Plugin\ImageEffect;

use Drupal\Core\Image\ImageInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\image\Attribute\ImageEffect;

/**
 * Scales and crops an image resource.
 */
class ScaleAndCropImageEffect extends CropImageEffect {
    
    /**
     * {@inheritdoc}
     */
    public function applyEffect(ImageInterface $image) {
        $width = $this->configuration['width'];
        $height = $this->configuration['height'];
        $scale = max($width / $image->getWidth(), $height / $image->getHeight());
        [
            $x,
            $y,
        ] = explode('-', $this->configuration['anchor']);
        $x = image_filter_keyword($x, $image->getWidth() * $scale, $width);
        $y = image_filter_keyword($y, $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;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getSummary() {
        $summary = [
            '#theme' => 'image_scale_and_crop_summary',
            '#data' => $this->configuration,
        ];
        $summary += parent::getSummary();
        return $summary;
    }

}

Classes

Title Deprecated Summary
ScaleAndCropImageEffect Scales and crops an image resource.

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