public function getConvertOptionsAsString()
{
$options = $this->imagePath . ' ';
foreach ($this->convertCommandOptions as $commandKey => $commandValue) {
$options .= implode(' ', $this->getConvertFilters($commandKey)) . ' ';
$options .= "-{$commandKey} {$commandValue} ";
}
return $options;
}