function ConvertImageEffect::applyEffect

Same name and namespace in other branches
  1. 9 core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php \Drupal\image\Plugin\ImageEffect\ConvertImageEffect::applyEffect()
  2. 8.9.x core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php \Drupal\image\Plugin\ImageEffect\ConvertImageEffect::applyEffect()
  3. 11.x core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php \Drupal\image\Plugin\ImageEffect\ConvertImageEffect::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 ImageEffectInterface::applyEffect

File

core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php, line 24

Class

ConvertImageEffect
Converts an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

public function applyEffect(ImageInterface $image) {
  if (!$image->convert($this->configuration['extension'])) {
    $this->logger
      ->error('Image convert failed using the %toolkit toolkit on %path (%mimetype)', [
      '%toolkit' => $image->getToolkitId(),
      '%path' => $image->getSource(),
      '%mimetype' => $image->getMimeType(),
    ]);
    return FALSE;
  }
  return TRUE;
}

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