. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Example for tcpdf_barcodes_2d.php class // //============================================================+ /** * @file * Example for tcpdf_barcodes_2d.php class * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.009 */ // include 2D barcode class (search for installation path) require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); // set the barcode content and type $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417'); // output the barcode as PNG image $barcodeobj->getBarcodePNG(4, 4, array(0,0,0)); //============================================================+ // END OF FILE //============================================================+