From 51553e0e613b0a64ba80b3f7b17c8f019a9d2dbc Mon Sep 17 00:00:00 2001 From: james Date: Thu, 17 Mar 2011 22:24:07 +0000 Subject: [PATCH] Add barcode to tcpdf library --- tcpdf.inc.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tcpdf.inc.php b/tcpdf.inc.php index 0d30a256..02048243 100644 --- a/tcpdf.inc.php +++ b/tcpdf.inc.php @@ -398,4 +398,9 @@ class pdf extends TCPDF { { $this->Rect($this->lMargin + $x, $this->tMargin + $y, $w, $h); } + + function barcode($code, $type, $x='', $y='', $w='', $h='', $style='', $align='', $distort=false) { + $this->write2DBarcode($code,$type, $this->lMargin+$x, $this->tMargin+$y, $w, $h, $style, $align, $distort); + } + }