You are here

public function ImagemagickToolkit::resetArguments in ImageMagick 8

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

Resets the command line arguments.

Return value

$this

2 calls to ImagemagickToolkit::resetArguments()
ImagemagickToolkit::buildConfigurationForm in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Form constructor.
ImagemagickToolkit::identify in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Calls the identify executable on the specified file.

File

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

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

public function resetArguments() {
  $this->arguments = [];
  return $this;
}