You are here

public function InterlaceImageEffect::applyEffect in Image Effects 8.3

Same name and namespace in other branches
  1. 8 src/Plugin/ImageEffect/InterlaceImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\InterlaceImageEffect::applyEffect()
  2. 8.2 src/Plugin/ImageEffect/InterlaceImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\InterlaceImageEffect::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/InterlaceImageEffect.php, line 69

Class

InterlaceImageEffect
Class InterlaceImageEffect.

Namespace

Drupal\image_effects\Plugin\ImageEffect

Code

public function applyEffect(ImageInterface $image) {
  return $image
    ->apply('interlace', [
    'type' => $this->configuration['type'],
  ]);
}