示例#1
0
 /**
  * Keep the frame or add a white space
  *
  * @param bool $val
  */
 public function keepFrame($val)
 {
     if ($this->isActive()) {
         $this->_imageObject->keepFrame($val);
     }
     return $this;
 }
 /**
  * Keep the frame or add a white space
  *
  * @param bool $val
  */
 public function keepFrame($val)
 {
     if ($this->isActive()) {
         $this->_settings['keep_frame'] = $val;
         $this->_imageObject->keepFrame($val);
     }
     return $this;
 }