public function ImagemagickExecArguments::getDestinationFormat in ImageMagick 8.3
Same name and namespace in other branches
- 8.2 src/ImagemagickExecArguments.php \Drupal\imagemagick\ImagemagickExecArguments::getDestinationFormat()
Gets the image destination format.
When set, it is passed to the convert binary in the syntax "[format]:[destination]", where [format] is a string denoting an ImageMagick's image format.
Return value
string The image destination format.
File
- src/
ImagemagickExecArguments.php, line 424
Class
- ImagemagickExecArguments
- Stores arguments for execution of ImageMagick/GraphicsMagick commands.
Namespace
Drupal\imagemagickCode
public function getDestinationFormat() : string {
return $this->destinationFormat;
}