function restore()
 {
     $this->_pdf->restoreState();
 }
Example #2
0
 /**
  * Closes the current 'object'
  *
  * @see CPDF_Adapter::open_object()
  */
 function close_object()
 {
     $this->_pdf->restoreState();
     $this->_pdf->closeObject();
 }