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"); } }