コード例 #1
0
ファイル: TPLEXTENDED.php プロジェクト: artack/fpdi
 /**
  * See FPDF/TCPDF-Documentation ;-)
  */
 function Image($file, $x = '', $y = '', $w = 0, $h = 0, $type = '', $link = '', $align = '', $resize = false, $dpi = 300, $palign = '', $ismask = false, $imgmask = false, $border = 0, $fitbox = false, $hidden = false, $fitonpage = false, $alt = false, $altimgs = array())
 {
     if (is_subclass_of($this, 'TCPDF')) {
         $args = func_get_args();
         return call_user_func_array(array($this, 'TCPDF::Image'), $args);
     }
     $ret = parent::Image($file, $x, $y, $w, $h, $type, $link);
     if ($this->_intpl) {
         $this->_res['tpl'][$this->tpl]['images'][$file] =& $this->images[$file];
     } else {
         $this->_res['page'][$this->page]['images'][$file] =& $this->images[$file];
     }
     return $ret;
 }