You are here

public function ImagemagickToolkit::setFrames in ImageMagick 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::setFrames()
  2. 8 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::setFrames()

Sets the source image number of frames.

Parameters

int|null $frames: The number of frames of the image.

Return value

$this

File

src/Plugin/ImageToolkit/ImagemagickToolkit.php, line 841

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

public function setFrames($frames) {
  $this->frames = $frames;
  return $this;
}