Example of TCPDF document in PDF/A-1b mode.
+This document conforms to the standard PDF/A-1b (ISO 19005-1:2005).
+Please check the source code documentation and other examples for further information (http://www.tcpdf.org).
+TO IMPROVE AND EXPAND TCPDF I NEED YOUR SUPPORT, PLEASE MAKE A DONATION!
+EOD;
+
+// Print text using writeHTMLCell()
+$pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);
+
+// ---------------------------------------------------------
+
+// Close and output PDF document
+// This method has several options, check the source code documentation for more information.
+$pdf->Output('example_065.pdf', 'I');
+
+//============================================================+
+// END OF FILE
+//============================================================+
diff --git a/app/vendors/tcpdf/examples/index.php b/app/vendors/tcpdf/examples/index.php
index 00a095d7..75125235 100755
--- a/app/vendors/tcpdf/examples/index.php
+++ b/app/vendors/tcpdf/examples/index.php
@@ -17,6 +17,8 @@ echo '<'.'?'.'xml version="1.0" encoding="UTF-8"'.'?'.'>';
TCPDF Examples
+PDF
+
- Simple PDF with default Header and Footer: [PDF]
- Simple PDF without Header and Footer: [PDF]
@@ -41,10 +43,10 @@ echo '<'.'?'.'xml version="1.0" encoding="UTF-8"'.'?'.'>';
- writeHTML alignment: [PDF]
- CMYK colors: [PDF]
- Page Groups: [PDF]
-- Object Visibility: [PDF]
+- Object Visibility and Layers: [PDF]
- Object Transparency: [PDF]
- Text Rendering Modes and Text Clipping: [PDF]
-- Barcodes: [PDF]
+- 1D Barcodes: [PDF]
- Multiple page formats: [PDF]
- Set PDF viewer display preferences: [PDF]
- Colour gradients: [PDF]
@@ -67,7 +69,7 @@ echo '<'.'?'.'xml version="1.0" encoding="UTF-8"'.'?'.'>';
- Transactions and UNDO: [PDF]
- Table header and rowspan: [PDF]
- TCPDF methods in HTML: [PDF]
-- 2D Barcode (QR-Code AND PDF417): [PDF]
+- 2D Barcode (QR-Code, Datamatrix ECC200 and PDF417): [PDF]
- Full page background: [PDF]
- Digital Signature Certification: [PDF]
- Javascript functions: [PDF]
@@ -82,6 +84,31 @@ echo '<'.'?'.'xml version="1.0" encoding="UTF-8"'.'?'.'>';
- XObject Templates: [PDF]
- Text stretching and spacing (tracking/kerning): [PDF]
- No-write page regions: [PDF]
+- PDF/A-1b (ISO 19005-1:2005) document: [PDF]
+
+
+Barcodes
+
+
+- 1D barcode HTML format [HTML]
+- 1D barcode PNG format [PNG]
+- 1D barcode SVG format [SVG]
+- 1D barcode SVG INLINE format [SVG INLINE]
+
+- 2D datamatrix barcode HTML format [HTML]
+- 2D datamatrix barcode PNG format [PNG]
+- 2D datamatrix barcode SVG format [SVG]
+- 2D datamatrix barcode SVG INLINE format [SVG INLINE]
+
+- 2D pdf417 barcode HTML format [HTML]
+- 2D pdf417 barcode PNG format [PNG]
+- 2D pdf417 barcode SVG format [SVG]
+- 2D pdf417 barcode SVG INLINE format [SVG INLINE]
+
+- 2D qrcode barcode HTML format [HTML]
+- 2D qrcode barcode PNG format [PNG]
+- 2D qrcode barcode SVG format [SVG]
+- 2D qrcode barcode SVG INLINE format [SVG INLINE]