public function ImagemagickToolkit::setSourceLocalPath in ImageMagick 8
Same name and namespace in other branches
- 8.2 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::setSourceLocalPath()
Sets the local filesystem path to the image file.
Parameters
string $path: A filesystem path.
Return value
$this
File
- src/Plugin/ ImageToolkit/ ImagemagickToolkit.php, line 563 
Class
- ImagemagickToolkit
- Provides ImageMagick integration toolkit for image manipulation.
Namespace
Drupal\imagemagick\Plugin\ImageToolkitCode
public function setSourceLocalPath($path) {
  $this->sourceLocalPath = $path;
  return $this;
}