You are here

public function ImagemagickToolkit::getDestinationLocalPath in ImageMagick 8

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

Gets the local filesystem path to the destination image file.

Return value

string A filesystem path.

2 calls to ImagemagickToolkit::getDestinationLocalPath()
ImagemagickToolkit::convert in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Calls the convert executable with the specified arguments.
ImagemagickToolkit::imagemagickExec in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Executes the convert executable as shell command.

File

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

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

public function getDestinationLocalPath() {
  return $this->destinationLocalPath;
}