Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function save($path = null, array $options = array())
 {
     $path = null === $path ? $this->gmagick->getImageFilename() : $path;
     if ('' === trim($path)) {
         throw new RuntimeException('You can omit save path only if image has been open from a file');
     }
     try {
         $this->prepareOutput($options);
         $allFrames = !isset($options['animated']) || false === $options['animated'];
         $this->gmagick->writeimage($path, $allFrames);
     } catch (\GmagickException $e) {
         throw new RuntimeException('Save operation failed', $e->getCode(), $e);
     }
     return $this;
 }