public function ImagemagickExecArguments::setDestination in ImageMagick 8.2
Same name and namespace in other branches
- 8.3 src/ImagemagickExecArguments.php \Drupal\imagemagick\ImagemagickExecArguments::setDestination()
Sets the image destination URI/path on saving.
Parameters
string $destination: The image destination URI/path.
Return value
$this
File
- src/
ImagemagickExecArguments.php, line 514
Class
- ImagemagickExecArguments
- Stores arguments for execution of ImageMagick/GraphicsMagick commands.
Namespace
Drupal\imagemagickCode
public function setDestination($destination) {
$this->destination = $destination;
return $this;
}