You are here

public function ConvertImageEffect::applyEffect in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php \Drupal\image\Plugin\ImageEffect\ConvertImageEffect::applyEffect()
  2. 9 core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php \Drupal\image\Plugin\ImageEffect\ConvertImageEffect::applyEffect()

File

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

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;
}