<?php
//============================================================+
// File name   : example_027.php
// Begin       : 2008-03-04
// Last Update : 2009-09-30
// 
// Description : Example 027 for TCPDF class
//               1D Barcodes
// 
// Author: Nicola Asuni
// 
// (c) Copyright:
//               Nicola Asuni
//               Tecnick.com s.r.l.
//               Via Della Pace, 11
//               09044 Quartucciu (CA)
//               ITALY
//               www.tecnick.com
//               info@tecnick.com
//============================================================+

/**
 * Creates an example PDF TEST document using TCPDF
 * @package com.tecnick.tcpdf
 * @abstract TCPDF - Example: 1D Barcodes.
 * @author Nicola Asuni
 * @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
 * @link http://tcpdf.org
 * @license http://www.gnu.org/copyleft/lesser.html LGPL
 * @since 2008-03-04
 */

require_once('../config/lang/eng.php');
require_once(
'../tcpdf.php');

// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATIONPDF_UNITPDF_PAGE_FORMATtrue'UTF-8'false); 

// set document information
$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor('Nicola Asuni');
$pdf->SetTitle('TCPDF Example 027');
$pdf->SetSubject('TCPDF Tutorial');
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');

// set default header data
$pdf->SetHeaderData(PDF_HEADER_LOGOPDF_HEADER_LOGO_WIDTHPDF_HEADER_TITLEPDF_HEADER_STRING);

// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN''PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA''PDF_FONT_SIZE_DATA));

// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);

//set margins
$pdf->SetMargins(PDF_MARGIN_LEFTPDF_MARGIN_TOPPDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);

//set auto page breaks
$pdf->SetAutoPageBreak(TRUEPDF_MARGIN_BOTTOM);

//set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); 

//set some language-dependent strings
$pdf->setLanguageArray($l); 

// ---------------------------------------------------------

// set a barcode on the page footer
$pdf->setBarcode(date('Y-m-d H:i:s'));

// set font
$pdf->SetFont('helvetica'''10);

// add a page
$pdf->AddPage();

$style = array(
    
'position' => 'S',
    
'border' => true,
    
'padding' => 4,
    
'fgcolor' => array(0,0,0),
    
'bgcolor' => false//array(255,255,255),
    
'text' => true,
    
'font' => 'helvetica',
    
'fontsize' => 8,
    
'stretchtext' => 4
);

// PRINT VARIOUS 1D BARCODES

// CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
$pdf->Cell(00'CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9'01);
$pdf->write1DBarcode('CODE 39''C39'''''80300.4$style'N');

$pdf->Ln();

// CODE 39 + CHECKSUM
$pdf->Cell(00'CODE 39 + CHECKSUM'01);
$pdf->write1DBarcode('CODE 39 +''C39+'''''80300.4$style'N');

$pdf->Ln();

// CODE 39 EXTENDED
$pdf->Cell(00'CODE 39 EXTENDED'01);
$pdf->write1DBarcode('CODE 39 E''C39E'''''80300.4$style'N');

$pdf->Ln();

// CODE 39 EXTENDED + CHECKSUM
$pdf->Cell(00'CODE 39 EXTENDED + CHECKSUM'01);
$pdf->write1DBarcode('CODE 39 E+''C39E+'''''80300.4$style'N');

$pdf->Ln();

// CODE 93 - USS-93
$pdf->Cell(00'CODE 93 - USS-93'01);
$pdf->write1DBarcode('TEST93''C93'''''80300.4$style'N');

$pdf->Ln();

// Standard 2 of 5
$pdf->Cell(00'Standard 2 of 5'01);
$pdf->write1DBarcode('1234567''S25'''''80300.4$style'N');

// add a page ----------
$pdf->AddPage();

// Standard 2 of 5 + CHECKSUM
$pdf->Cell(00'Standard 2 of 5 + CHECKSUM'01);
$pdf->write1DBarcode('1234567''S25+'''''80300.4$style'N');

$pdf->Ln();

// Interleaved 2 of 5
$pdf->Cell(00'Interleaved 2 of 5'01);
$pdf->write1DBarcode('1234567''I25'''''80300.4$style'N');

$pdf->Ln();

// Interleaved 2 of 5 + CHECKSUM
$pdf->Cell(00'Interleaved 2 of 5 + CHECKSUM'01);
$pdf->write1DBarcode('1234567''I25+'''''80300.4$style'N');

$pdf->Ln();

// CODE 128 A
$pdf->Cell(00'CODE 128 A'01);
$pdf->write1DBarcode('CODE 128 A''C128A'''''80300.4$style'N');

$pdf->Ln();

// CODE 128 B
$pdf->Cell(00'CODE 128 B'01);
$pdf->write1DBarcode('CODE 128 B''C128B'''''80300.4$style'N');

$pdf->Ln();

// CODE 128 C
$pdf->Cell(00'CODE 128 C'01);
$pdf->write1DBarcode('0123456789''C128C'''''80300.4$style'N');

// add a page ----------
$pdf->AddPage();

// EAN 8
$pdf->Cell(00'EAN 8'01);
$pdf->write1DBarcode('1234567''EAN8'''''80300.4$style'N');

$pdf->Ln();

// EAN 13
$pdf->Cell(00'EAN 13'01);
$pdf->write1DBarcode('1234567890128''EAN13'''''80300.4$style'N');

$pdf->Ln();

// 2-Digits UPC-Based Extention
$pdf->Cell(00'2-Digits UPC-Based Extention'01);
$pdf->write1DBarcode('34''EAN2'''''20300.4$style'N');

$pdf->Ln();

// 5-Digits UPC-Based Extention
$pdf->Cell(00'5-Digits UPC-Based Extention'01);
$pdf->write1DBarcode('51234''EAN5'''''40300.4$style'N');

$pdf->Ln();

// UPC-A
$pdf->Cell(00'UPC-A'01);
$pdf->write1DBarcode('12345678901''UPCA'''''80300.4$style'N');

$pdf->Ln();

// UPC-E
$pdf->Cell(00'UPC-E'01);
$pdf->write1DBarcode('04210000526''UPCE'''''80300.4$style'N');

// add a page ----------
$pdf->AddPage();

// MSI
$pdf->Cell(00'MSI'01);
$pdf->write1DBarcode('80523''MSI'''''80300.4$style'N');

$pdf->Ln();

// MSI + CHECKSUM (module 11)
$pdf->Cell(00'MSI + CHECKSUM (module 11)'01);
$pdf->write1DBarcode('80523''MSI+'''''80300.4$style'N');

$pdf->Ln();

// IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200
$pdf->Cell(00'IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200'01);
$pdf->write1DBarcode('01234567094987654321-01234567891''IMB'''''130200.4$style'N');

$pdf->Ln();

// POSTNET
$pdf->Cell(00'POSTNET'01);
$pdf->write1DBarcode('98000''POSTNET'''''80200.4$style'N');

$pdf->Ln();

// PLANET
$pdf->Cell(00'PLANET'01);
$pdf->write1DBarcode('98000''PLANET'''''80200.4$style'N');

$pdf->Ln();

// RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)
$pdf->Cell(00'RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)'01);
$pdf->write1DBarcode('SN34RD1A''RMS4CC'''''80200.4$style'N');

$pdf->Ln();

// KIX (Klant index - Customer index)
$pdf->Cell(00'KIX (Klant index - Customer index)'01);
$pdf->write1DBarcode('SN34RDX1A''KIX'''''80200.4$style'N');

// add a page ----------
$pdf->AddPage();

// CODABAR
$pdf->Cell(00'CODABAR'01);
$pdf->write1DBarcode('123456789''CODABAR'''''80300.4$style'N');

$pdf->Ln();

// CODE 11
$pdf->Cell(00'CODE 11'01);
$pdf->write1DBarcode('123-456-789''CODE11'''''80300.4$style'N');

$pdf->Ln();

// PHARMACODE
$pdf->Cell(00'PHARMACODE'01);
$pdf->write1DBarcode('789''PHARMA'''''30300.4$style'N');

$pdf->Ln();

// PHARMACODE TWO-TRACKS
$pdf->Cell(00'PHARMACODE TWO-TRACKS'01);
$pdf->write1DBarcode('105''PHARMA2T'''''20300.4$style'N');

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// TEST BARCDE ALIGNMENTS

// add a page
$pdf->AddPage();

// Left alignment
$style['position'] = 'L';
$pdf->write1DBarcode('LEFT''C128A'''''180300.4$style'N');

$pdf->Ln();

// Center alignment
$style['position'] = 'C';
$pdf->write1DBarcode('CENTER''C128A'''''180300.4$style'N');

$pdf->Ln();

// Right alignment
$style['position'] = 'R';
$pdf->write1DBarcode('RIGHT''C128A'''''180300.4$style'N');

// ---------------------------------------------------------

//Close and output PDF document
$pdf->Output('example_027.pdf''I');

//============================================================+
// END OF FILE                                                 
//============================================================+
?>