You are here

public function ImagemagickExecArguments::getSource in ImageMagick 8.2

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

Gets the path of the source image file.

Return value

string The source path of the image file, or an empty string if the source is not set.

File

src/ImagemagickExecArguments.php, line 416

Class

ImagemagickExecArguments
Stores arguments for execution of ImageMagick/GraphicsMagick commands.

Namespace

Drupal\imagemagick

Code

public function getSource() {
  return $this->source;
}