public function SetTransparentColorImageEffect::applyEffect in Image Effects 8
Same name and namespace in other branches
- 8.3 src/Plugin/ImageEffect/SetTransparentColorImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\SetTransparentColorImageEffect::applyEffect()
- 8.2 src/Plugin/ImageEffect/SetTransparentColorImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\SetTransparentColorImageEffect::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
- src/
Plugin/ ImageEffect/ SetTransparentColorImageEffect.php, line 76
Class
- SetTransparentColorImageEffect
- Adjust image contrast.
Namespace
Drupal\image_effects\Plugin\ImageEffectCode
public function applyEffect(ImageInterface $image) {
return $image
->apply('set_gif_transparent_color', [
'transparent_color' => $this->configuration['transparent_color'],
]);
}