From 58e778035be6439301a76f9466d843e4de2e163a Mon Sep 17 00:00:00 2001 From: james Date: Sat, 19 Mar 2011 22:10:12 +0000 Subject: [PATCH] Fix barcode function, auto-add static textbelow barcode, add fair logo code --- tcpdf.inc.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tcpdf.inc.php b/tcpdf.inc.php index 02048243..81bf3143 100644 --- a/tcpdf.inc.php +++ b/tcpdf.inc.php @@ -399,8 +399,19 @@ 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) { + function label_fair_logo($x, $y, $w, $h, $show_box) + { + global $config; + $img_dir = $_SERVER['DOCUMENT_ROOT'].$config['SFIABDIRECTORY'].'/data'; + /* Scale image to proportinally fit in w x h */ + $this->Image($img_dir."/logo-500.png", $this->lMargin + $x, $this->tMargin + $y, + $w, $h, '', '', '', true, + 300, '', false, false, $show_box ? 1 : 0, true); + } + + function label_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); + $this->label_text($x-1,$y+$h+1,32,10,"Get the iPhone app search Science Fair",0,"center","center","","normal",10,"scale"); } }