Exemplo n.º 1
0
 public function process()
 {
     if (!empty($this->_operationsQueue)) {
         self::$_activeImageAdapter->setSourcePath($this->_sourcePath);
         self::$_activeImageAdapter->process($this->_operationsQueue);
         $this->resetOperationsQueue();
     }
 }
Exemplo n.º 2
0
 public function process($operations)
 {
     $this->_image = new \Imagick($this->_sourcePath);
     parent::process($operations);
     return $this;
 }
Exemplo n.º 3
0
 public function process($operations, $source, $destination = null)
 {
     $this->_commandString = '';
     parent::process($operations, $source, $destination);
 }