You are here

public function ImagemagickToolkit::getSourceLocalPath in ImageMagick 8

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

Gets the local filesystem path to the image file.

Return value

string A filesystem path.

3 calls to ImagemagickToolkit::getSourceLocalPath()
ImagemagickToolkit::imagemagickExec in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Executes the convert executable as shell command.
ImagemagickToolkit::parseExifData in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Parses the image file EXIF data using the PHP read_exif_data() function.
ImagemagickToolkit::parseFileViaGetImageSize in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Parses the image file using the PHP getimagesize() function.

File

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

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

public function getSourceLocalPath() {
  return $this->sourceLocalPath;
}