You are here

public function ScaleAndCropImageEffect::applyEffect in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php \Drupal\image\Plugin\ImageEffect\ScaleAndCropImageEffect::applyEffect()

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 ResizeImageEffect::applyEffect

File

core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php, line 26
Contains \Drupal\image\Plugin\ImageEffect\ScaleAndCropImageEffect.

Class

ScaleAndCropImageEffect
Scales and crops an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

public function applyEffect(ImageInterface $image) {
  if (!$image
    ->scaleAndCrop($this->configuration['width'], $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;
}