public function ImagemagickExecArguments::setSourceFrames in ImageMagick 8.3
Same name and namespace in other branches
- 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\imagemagickCode
public function setSourceFrames(string $frames) : ImagemagickExecArguments {
$this->sourceFrames = $frames;
return $this;
}