tFPDF::_putxobjectdict PHP Метод

_putxobjectdict() публичный Метод

public _putxobjectdict ( )
    function _putxobjectdict()
    {
        foreach ($this->images as $image) {
            $this->_out('/I' . $image['i'] . ' ' . $image['n'] . ' 0 R');
        }
    }

Usage Example

Пример #1
0
 function _putxobjectdict()
 {
     parent::_putxobjectdict();
     if (count($this->tpls)) {
         foreach ($this->tpls as $tplidx => $tpl) {
             $this->_out(sprintf('%s%d %d 0 R', $this->tplprefix, $tplidx, $tpl['n']));
         }
     }
 }