k,($this->h-$y)*$this->k,$this->_escape($txt)); if ($this->ColorFlag) $s='q '.$this->TextColor.' '.$s.' Q'; $this->_out($s); } } // -------------------------------------------------- // // PROPERTIES // -------------------------------------------------- // $fontSize = 10; $marge = 10; // between barcode and hri in pixel $x = 200; // barcode center $y = 200; // barcode center $height = 50; // barcode height in 1D ; module size in 2D $width = 2; // barcode height in 1D ; not use in 2D $angle = 0; // rotation in degrees : nb : non horizontable barcode might not be usable because of pixelisation $code = '123456789012'; // barcode, of course ;) $type = 'code128'; $black = '000000'; // color in hexa // -------------------------------------------------- // // ALLOCATE FPDF RESSOURCE // -------------------------------------------------- // $pdf = new FPDF('P', 'pt'); $pdf->AddPage(); // -------------------------------------------------- // // BARCODE // -------------------------------------------------- // $data = Barcode::fpdf($pdf, $black, $x, $y, $angle, $type, array('code'=>$code), $width, $height); // -------------------------------------------------- // // HRI // -------------------------------------------------- // $pdf->SetFont('Arial','B',$fontSize); $pdf->SetTextColor(0, 0, 0); $len = $pdf->GetStringWidth($data['hri']); Barcode::rotate(-$len / 2, ($data['height'] / 2) + $fontSize + $marge, $angle, $xt, $yt); $pdf->Output(); ?>