You are here

public function ImagemagickExecArguments::setSourceLocalPath in ImageMagick 8.3

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

Sets the local filesystem path to the image file.

Parameters

string $path: A filesystem path.

Return value

$this

File

src/ImagemagickExecArguments.php, line 256

Class

ImagemagickExecArguments
Stores arguments for execution of ImageMagick/GraphicsMagick commands.

Namespace

Drupal\imagemagick

Code

public function setSourceLocalPath(string $path) : ImagemagickExecArguments {
  $this->sourceLocalPath = $path;
  return $this;
}