You are here

public function ImagemagickExecArguments::setSourceFrames in ImageMagick 8.2

Same name and namespace in other branches
  1. 8.3 src/ImagemagickExecArguments.php \Drupal\imagemagick\ImagemagickExecArguments::setSourceFrames()

Sets the source image frames to access.

Parameters

string $frames: The frames in '[n]' string format.

Return value

$this

See also

http://www.imagemagick.org/script/command-line-processing.php

File

src/ImagemagickExecArguments.php, line 489

Class

ImagemagickExecArguments
Stores arguments for execution of ImageMagick/GraphicsMagick commands.

Namespace

Drupal\imagemagick

Code

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