class DesaturateImageEffect

Same name and namespace in other branches
  1. 11.x core/modules/image/src/Plugin/ImageEffect/DesaturateImageEffect.php \Drupal\image\Plugin\ImageEffect\DesaturateImageEffect

Desaturates (grayscale) an image resource.

Plugin annotation


@ImageEffect(
  id = "image_desaturate",
  label = @Translation("Desaturate"),
  description = @Translation("Desaturate converts an image to grayscale.")
)

Hierarchy

Expanded class hierarchy of DesaturateImageEffect

File

core/modules/image/src/Plugin/ImageEffect/DesaturateImageEffect.php, line 17

Namespace

Drupal\image\Plugin\ImageEffect
View source
class DesaturateImageEffect extends ImageEffectBase {
  
  /**
   * {@inheritdoc}
   */
  public function applyEffect(ImageInterface $image) {
    if (!$image->desaturate()) {
      $this->logger
        ->error('Image desaturate 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;
  }

}

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