Fix barcode function, auto-add static textbelow barcode, add fair logo code

This commit is contained in:
james 2011-03-19 22:10:12 +00:00
parent aedb61c286
commit 58e778035b

View File

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