Exemplo n.º 1
0
 /**
  * Shortcut to run a "mogrify" command => modifies the image source
  *
  * @param string $format ImBundle format string
  * @param string $file Source file path
  *
  * @return string
  * @codeCoverageIgnore
  */
 public function mogrify($format, $file)
 {
     $this->checkImage($file);
     return $this->wrapper->run("mogrify", $file, $this->convertFormat($format));
 }