You are here

public function ImagemagickExecArguments::setDestinationLocalPath in ImageMagick 8.2

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

Sets the local filesystem path to the destination image file.

Parameters

string $path: A filesystem path.

Return value

$this

File

src/ImagemagickExecArguments.php, line 537

Class

ImagemagickExecArguments
Stores arguments for execution of ImageMagick/GraphicsMagick commands.

Namespace

Drupal\imagemagick

Code

public function setDestinationLocalPath($path) {
  $this->destinationLocalPath = $path;
  return $this;
}