You are here

public function ImagemagickExecArguments::setSourceFrames in ImageMagick 8.3

Same name and namespace in other branches
  1. 8.2 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 317

Class

ImagemagickExecArguments
Stores arguments for execution of ImageMagick/GraphicsMagick commands.

Namespace

Drupal\imagemagick

Code

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