tcpdf_barcodes_2d_include.php000064400000003032151162412440012305 0ustar00. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Example for tcpdf_barcodes_1d.php class // //============================================================+ /** * @file * Example for tcpdf_barcodes_1d.php class * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.000 * @group barcode * @group 1d * @group png */ // include 1D barcode class (search for installation path) require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); // set the barcode content and type $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); // output the barcode as PNG image $barcodeobj->getBarcodePNG(2, 30, array(0,0,0)); //============================================================+ // END OF FILE //============================================================+ example_2d_qrcode_svg.php000064400000004012151162412440011506 0ustar00. // // 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 * @group barcode * @group qrcode * @group svg */ // 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', 'QRCODE,H'); // output the barcode as SVG image $barcodeobj->getBarcodeSVG(6, 6, 'black'); //============================================================+ // END OF FILE //============================================================+ example_1d_html.php000064400000004040151162412440010316 0ustar00. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Example for tcpdf_barcodes_1d.php class // //============================================================+ /** * @file * Example for tcpdf_barcodes_1d.php class * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.000 * @group barcode * @group 1d * @group html * @group comparable */ // include 1D barcode class (search for installation path) require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); // set the barcode content and type $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); // output the barcode as HTML object echo $barcodeobj->getBarcodeHTML(2, 30, 'black'); //============================================================+ // END OF FILE //============================================================+ tcpdf_barcodes_1d_include.php000064400000003032151162412440012304 0ustar00. // // 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 * @group barcode * @group qrcode * @group html */ // 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', 'QRCODE,H'); // output the barcode as HTML object echo $barcodeobj->getBarcodeHTML(6, 6, 'black'); //============================================================+ // END OF FILE //============================================================+ example_2d_datamatrix_html.php000064400000004057151162412440012545 0ustar00. // // 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 * @group barcode * @group datamatrix * @group html * @group comparable */ // 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 HTML object echo $barcodeobj->getBarcodeHTML(6, 6, 'black'); //============================================================+ // END OF FILE //============================================================+ example_1d_svgi.php000064400000004046151162412440010330 0ustar00. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Example for tcpdf_barcodes_1d.php class // //============================================================+ /** * @file * Example for tcpdf_barcodes_1d.php class * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.000 * @group barcode * @group 1d * @group svg * @group comparable */ // include 1D barcode class (search for installation path) require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); // set the barcode content and type $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); // output the barcode as SVG inline code echo $barcodeobj->getBarcodeSVGcode(2, 40, 'black'); //============================================================+ // END OF FILE //============================================================+ example_2d_qrcode_png.php000064400000004017151162412440011500 0ustar00. // // 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 * @group barcode * @group qrcode * @group png */ // 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', 'QRCODE,H'); // output the barcode as PNG image $barcodeobj->getBarcodePNG(6, 6, array(0,0,0)); //============================================================+ // END OF FILE //============================================================+ example_2d_pdf417_svgi.php000064400000004055151162412440011416 0ustar00. // // 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 * @group barcode * @group pdf417 * @group svg * @group comparable */ // 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 SVG inline code echo $barcodeobj->getBarcodeSVGcode(4, 4, 'black'); //============================================================+ // END OF FILE //============================================================+ example_2d_pdf417_html.php000064400000004047151162412440011413 0ustar00. // // 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 * @group barcode * @group pdf417 * @group html * @group comparable */ // 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 HTML object echo $barcodeobj->getBarcodeHTML(4, 4, 'black'); //============================================================+ // END OF FILE //============================================================+ example_2d_datamatrix_svgi.php000064400000004065151162412440012550 0ustar00. // // 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 * @group barcode * @group datamatrix * @group svg * @group comparable */ // 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 inline code echo $barcodeobj->getBarcodeSVGcode(6, 6, 'black'); //============================================================+ // END OF FILE //============================================================+ example_1d_svg.php000064400000004026151162412440010155 0ustar00. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Example for tcpdf_barcodes_1d.php class // //============================================================+ /** * @file * Example for tcpdf_barcodes_1d.php class * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.000 * @group barcode * @group 1d * @group svg * @group comparable */ // include 1D barcode class (search for installation path) require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); // set the barcode content and type $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); // output the barcode as SVG image $barcodeobj->getBarcodeSVG(2, 30, 'black'); //============================================================+ // END OF FILE //============================================================+ example_2d_pdf417_png.php000064400000004015151162412440011226 0ustar00. // // 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 * @group barcode * @group pdf417 * @group png */ // 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 //============================================================+ example_2d_datamatrix_png.php000064400000004025151162412440012360 0ustar00. // // 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 * @group barcode * @group datamatrix * @group png */ // 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 PNG image $barcodeobj->getBarcodePNG(6, 6, array(0,0,0)); //============================================================+ // END OF FILE //============================================================+ example_2d_qrcode_svgi.php000064400000004032151162412440011661 0ustar00. // // 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 * @group barcode * @group qrcode * @group svg */ // 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', 'QRCODE,H'); // output the barcode as SVG inline code echo $barcodeobj->getBarcodeSVGcode(6, 6, 'black'); //============================================================+ // END OF FILE //============================================================+ example_2d_pdf417_svg.php000064400000004035151162412440011243 0ustar00. // // 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 * @group barcode * @group pdf417 * @group svg * @group comparable */ // 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 SVG image $barcodeobj->getBarcodeSVG(4, 4, 'black'); //============================================================+ // END OF FILE //============================================================+ example_2d_datamatrix_svg.php000064400000004045151162412440012375 0ustar00. // // 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 * @group barcode * @group datamatrix * @group svg * @group comparable */ // 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 //============================================================+