/**
  * Sets fill transparency
  * @see Cpdf::setFillTransparency()
  *
  * Valid blend modes are (case-sensitive):
  *
  * Normal, Multiply, Screen, Overlay, Darken, Lighten,
  * ColorDogde, ColorBurn, HardLight, SoftLight, Difference,
  * Exclusion
  *
  * @param string $mode the blending mode to use
  * @param float $opacity 0.0 fully transparent, 1.0 fully opaque
  */
 protected function _set_fill_transparency($mode, $opacity)
 {
     $this->_pdf->setFillTransparency($mode, $opacity);
 }