/**
  * Keep the transparency of the image
  *
  * @param bool $val
  */
 public function keepTransparency($val)
 {
     if ($this->isActive()) {
         $this->_imageObject->keepTransparency($val);
     }
     return $this;
 }