DesaturateImageEffect.php in Zircon Profile 8.0
File
core/modules/image/src/Plugin/ImageEffect/DesaturateImageEffect.php
View source
<?php
namespace Drupal\image\Plugin\ImageEffect;
use Drupal\Core\Image\ImageInterface;
use Drupal\image\ImageEffectBase;
class DesaturateImageEffect extends ImageEffectBase {
public function applyEffect(ImageInterface $image) {
if (!$image
->desaturate()) {
$this->logger
->error('Image desaturate 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;
}
}