You are here

public function ImagemagickToolkit::getArguments in ImageMagick 8

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

Gets the command line arguments for the binary.

Return value

string[] The array of command line arguments.

2 calls to ImagemagickToolkit::getArguments()
ImagemagickToolkit::findArgument in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Finds if a command line argument exists.
ImagemagickToolkit::imagemagickExec in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Executes the convert executable as shell command.

File

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

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

public function getArguments() {
  return $this->arguments ?: [];
}