Class: TCPDFBarcode
Source Location: /barcodes.php
PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).
Author(s):
Version:
|
|
|
Class Details
Class Variables
Class Methods
constructor __construct [line 84]
TCPDFBarcode __construct(
string
$code, string
$type)
|
|
This is the class constructor. Return an array representations for common 1D barcodes: - $arrcode['code'] code to be printed on text label
- $arrcode['maxh'] max bar height
- $arrcode['maxw'] max bar width
- $arrcode['bcode'][$k] single bar or space in $k position
- $arrcode['bcode'][$k]['t'] bar type: true = bar, false = space.
- $arrcode['bcode'][$k]['w'] bar width in units.
- $arrcode['bcode'][$k]['h'] bar height in units.
- $arrcode['bcode'][$k]['p'] bar top position (0 = top, 1 = middle)
Tags:
Parameters:
method barcode_c128 [line 799]
array barcode_c128(
string
$code, [string
$type = 'B'])
|
|
C128 barcodes. Very capable code, excellent density, high reliability; in very wide use world-wide
Tags:
Parameters:
method barcode_codabar [line 1487]
array barcode_codabar(
string
$code)
|
|
CODABAR barcodes. Older code often used in library systems, sometimes in blood banks
Tags:
Parameters:
method barcode_code11 [line 1543]
array barcode_code11(
string
$code)
|
|
CODE11 barcodes. Used primarily for labeling telecommunications equipment
Tags:
Parameters:
method barcode_code39 [line 237]
array barcode_code39(
string
$code, [
$extended = false], [boolean
$checksum = false])
|
|
CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9. General-purpose code in very wide use world-wide
Tags:
Parameters:
method barcode_code93 [line 406]
array barcode_code93(
string
$code, boolean
$checksum)
|
|
CODE 93 - USS-93 Compact code similar to Code 39
Tags:
Parameters:
method barcode_eanext [line 1188]
array barcode_eanext(
string
$code, [string
$len = 5])
|
|
UPC-Based Extentions 2-Digit Ext.: Used to indicate magazines and newspaper issue numbers 5-Digit Ext.: Used to mark suggested retail price of books
Tags:
Parameters:
method barcode_eanupc [line 995]
array barcode_eanupc(
string
$code, [string
$len = 13])
|
|
EAN13 and UPC-A barcodes. EAN13: European Article Numbering international retail product code UPC-A: Universal product code seen on almost all retail products in the USA and Canada UPC-E: Short version of UPC symbol
Tags:
Parameters:
method barcode_i25 [line 735]
array barcode_i25(
string
$code, [boolean
$checksum = false])
|
|
Interleaved 2 of 5 barcodes. Compact numeric code, widely used in industry, air cargo Contains digits (0 to 9) and encodes the data in the width of both bars and spaces.
Tags:
Parameters:
method barcode_imb [line 1724]
array barcode_imb(
string
$code)
|
|
IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200 (requires PHP bcmath extension) Intelligent Mail barcode is a 65-bar code for use on mail in the United States. The fields are described as follows: - The Barcode Identifier shall be assigned by USPS to encode the presort identification that is currently printed in human readable form on the optional endorsement line (OEL) as well as for future USPS use. This shall be two digits, with the second digit in the range of 0–4. The allowable encoding ranges shall be 00–04, 10–14, 20–24, 30–34, 40–44, 50–54, 60–64, 70–74, 80–84, and 90–94.
- The Service Type Identifier shall be assigned by USPS for any combination of services requested on the mailpiece. The allowable encoding range shall be 000http://it2.php.net/manual/en/function.dechex.php–999. Each 3-digit value shall correspond to a particular mail class with a particular combination of service(s). Each service program, such as OneCode Confirm and OneCode ACS, shall provide the list of Service Type Identifier values.
- The Mailer or Customer Identifier shall be assigned by USPS as a unique, 6 or 9 digit number that identifies a business entity. The allowable encoding range for the 6 digit Mailer ID shall be 000000- 899999, while the allowable encoding range for the 9 digit Mailer ID shall be 900000000-999999999.
- The Serial or Sequence Number shall be assigned by the mailer for uniquely identifying and tracking mailpieces. The allowable encoding range shall be 000000000–999999999 when used with a 6 digit Mailer ID and 000000-999999 when used with a 9 digit Mailer ID. e. The Delivery Point ZIP Code shall be assigned by the mailer for routing the mailpiece. This shall replace POSTNET for routing the mailpiece to its final delivery point. The length may be 0, 5, 9, or 11 digits. The allowable encoding ranges shall be no ZIP Code, 00000–99999, 000000000–999999999, and 00000000000–99999999999.
Tags:
Parameters:
method barcode_msi [line 605]
array barcode_msi(
string
$code, [boolean
$checksum = false])
|
|
MSI. Variation of Plessey code, with similar applications Contains digits (0 to 9) and encodes the data only in the width of bars.
Tags:
Parameters:
method barcode_pharmacode [line 1635]
array barcode_pharmacode(
string
$code)
|
|
Pharmacode Contains digits (0 to 9)
Tags:
Parameters:
method barcode_pharmacode2t [line 1661]
array barcode_pharmacode2t(
string
$code)
|
|
Pharmacode two-track Contains digits (0 to 9)
Tags:
Parameters:
method barcode_postnet [line 1263]
array barcode_postnet(
string
$code, [boolean
$planet = false])
|
|
POSTNET and PLANET barcodes. Used by U.S. Postal Service for automated mail sorting
Tags:
Parameters:
method barcode_rms4cc [line 1336]
array barcode_rms4cc(
string
$code, [boolean
$kix = false])
|
|
RMS4CC - CBC - KIX RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code) - KIX (Klant index - Customer index) RM4SCC is the name of the barcode symbology used by the Royal Mail for its Cleanmail service.
Tags:
Parameters:
method barcode_s25 [line 664]
array barcode_s25(
string
$code, [boolean
$checksum = false])
|
|
Standard 2 of 5 barcodes. Used in airline ticket marking, photofinishing Contains digits (0 to 9) and encodes the data only in the width of bars.
Tags:
Parameters:
method binseq_to_array [line 705]
array binseq_to_array(
string
$seq,
$bararray)
|
|
Convert binary barcode sequence to TCPDF barcode array
Tags:
Parameters:
method checksum_code39 [line 382]
char checksum_code39(
string
$code)
|
|
Calculate CODE 39 checksum (modulo 43).
Tags:
Parameters:
method checksum_code93 [line 534]
string checksum_code93(
string
$code)
|
|
Calculate CODE 93 checksum (modulo 47).
Tags:
Parameters:
method checksum_s25 [line 579]
int checksum_s25(
string
$code)
|
|
Checksum for standard 2 of 5 barcodes.
Tags:
Parameters:
method dec_to_hex [line 1848]
string dec_to_hex(
string
$number)
|
|
Convert large integer number to hexadecimal representation. (requires PHP bcmath extension)
Tags:
Parameters:
method encode_code39_ext [line 331]
encoded encode_code39_ext(
string
$code)
|
|
Encode a string to be used for CODE 39 Extended mode.
Tags:
Parameters:
method getBarcodeArray [line 92]
Return an array representations of barcode.
Tags:
method hex_to_dec [line 1872]
string hex_to_dec(
string
$hex)
|
|
Convert large hexadecimal number to decimal representation (string). (requires PHP bcmath extension)
Tags:
Parameters:
method imb_crc11fcs [line 1889]
int imb_crc11fcs(
string
$code_arr)
|
|
Intelligent Mail Barcode calculation of Frame Check Sequence
Tags:
Parameters:
method imb_reverse_us [line 1925]
int imb_reverse_us(
int
$num)
|
|
Reverse unsigned short value
Tags:
Parameters:
method imb_tables [line 1942]
array imb_tables(
int
$n, int
$size)
|
|
generate Nof13 tables used for Intelligent Mail Barcode
Tags:
Parameters:
method setBarcode [line 102]
array setBarcode(
string
$code, string
$type)
|
|
Set the barcode.
Tags:
Parameters:
|
|