You are here

public function RetinaScaleAndCropImageEffect::applyEffect in Retina Images 8

Applies an image effect to the image object.

Parameters

\Drupal\Core\Image\ImageInterface $image: An image file object.

Return value

bool TRUE on success. FALSE if unable to perform the image effect on the image.

Overrides ScaleAndCropImageEffect::applyEffect

File

src/Plugin/ImageEffect/RetinaScaleAndCropImageEffect.php, line 24

Class

RetinaScaleAndCropImageEffect
Class RetinaScaleAndCropImageEffect @package Drupal\retina_images\Plugin\ImageEffect

Namespace

Drupal\retina_images\Plugin\ImageEffect

Code

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