/**
  * Stops the specified 'object' from appearing in the document.
  *
  * The object will stop being displayed on the page following the current
  * one.
  *
  * @param int $object
  */
 function stop_object($object)
 {
     $this->_pdf->stopObject($object);
 }