You are here

public function ImagemagickToolkit::setDestinationLocalPath in ImageMagick 8

Same name and namespace in other branches
  1. 8.2 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::setDestinationLocalPath()

Sets the local filesystem path to the destination image file.

Parameters

string $path: A filesystem path.

Return value

$this

1 call to ImagemagickToolkit::setDestinationLocalPath()
ImagemagickToolkit::save in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Writes an image resource to a destination file.

File

src/Plugin/ImageToolkit/ImagemagickToolkit.php, line 695

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

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