Add barcode to tcpdf library

This commit is contained in:
james 2011-03-17 22:24:07 +00:00
parent 42f1185892
commit 51553e0e61

View File

@ -398,4 +398,9 @@ class pdf extends TCPDF {
{ {
$this->Rect($this->lMargin + $x, $this->tMargin + $y, $w, $h); $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);
}
} }