. // // 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', 'DATAMATRIX'); // output the barcode as SVG image $barcodeobj->getBarcodeSVG(6, 6, 'black'); //============================================================+ // END OF FILE //============================================================+