function image($img_url, $x, $y, $w, $h, $resolution = "normal") {
   $this->_pdf->image($img_url, $x, $y, $w, $h, $resolution);
 }
 function image($img_url, $x, $y, $w, $h, $resolution = "normal", $node = null)
 {
     $this->_pdf->image($img_url, $x, $y, $w, $h, $resolution, $node);
 }