Barcode Web Fonts
ConnectCode Barcode Web Fonts is a solution that allows users to create barcodes on the web using fonts instead of images. It is based on ConnectCode’s True Type barcode font engine that has been proven to meet strict industry requirements. The solution employs the latest web technologies such as the Web Open Fonts Format and complies with the World Wide Web Consortium (W3C) standards. It has passed numerous independent audits, barcode verification tests and is used by many Fortune 500 companies.
Using a barcode web font is efficient as it only requires a single font to be downloaded to the browser and is able to generate multiple barcodes thereafter. Barcode fonts also raster to the output device and are not limited to DPI (Dots per Inch) of the computer screen. The versatility of a barcode font also makes it a popular solution for integrating with existing enterprise projects as it neither depends heavily on the programming environment nor requires intensive graphics operations. Instead, a slight manipulation of existing text is usually sufficient to produce robust and scannable barcodes.
@font-face Barcode
The Barcode Web Fonts solution provided by ConnectCode uses the Cascading Style Sheets (CSS) @font-face feature. @font-face allows authors to specify online or remote server fonts to display text on their web pages. This eliminates the need to depend on the fonts users have installed on their computers.
A barcode font is basically a specially designed font that allows users to specify and generate barcodes on normal text characters. A barcode web font builds on top of the barcode font and allows users to download the fonts to their local client machines. By tapping on the @font-face capabilities, users can now load their favourite HTML editors and create different types of barcodes that will work on different modern browsers.
Web Open Font Format (WOFF)
Web Open Font Format (WOFF) is an optimized font format recommended by World Wide Web Consortium (W3C) for use in web pages.
It is a font format that uses compression on Open Type or True Type fonts to achieve file size reduction so that it can be
efficiently distributed over the web. Over the years, WOFF has received the backing of many type foundries and browsers, and is now considered
the defacto font format on the web.
ConnectCode provides barcode fonts in WOFF format for use on the web and on the cloud. All the fonts
are tested vigorously to display on different desktop and mobile browsers. The web pages with the barcodes are also printed to ensure that
they meet the all the requirements of the different industry specifications. Additionally, ConnectCode also provides barcode fonts in Embedded Open Type (EOT),
and Open Type (OTF) format to ensure that our solution works on legacy browsers that have yet to fully support WOFF.
Using Javascript to generate the barcode characters
To create a barcode that adheres to the industry specifications typically requires the validation of the input data, transformation of the data to barcode characters and the creation of check digit characters. Besides providing the web fonts, the ConnectCode Barcode Web Fonts solution also provides Javascript and jQuery programs to carry out the above-mentioned processes.
Users can simply copy and upload the entire subdirectory of a specific barcode web font from the ConnectCode solution and have barcodes created on their websites immediately. The "Resource/webfonts/HTML5/javascript/<barcode name>" directory contains the web fonts, HTML web page and Javascript programs for the different barcodes shown below. Click on the links below to see a sample of the barcode generated.
Note : The registered version contains the full set of fonts of different sizes in the subdirectory. Users can remove the fonts that are not in use to reduce the number of files to upload.
Using jQuery to generate the barcode characters
Besides providing Javascript to generate the barcodes, ConnectCode also provides a jQuery library. The jQuery library bundled with Connectcode is jQuery 1.4.2. However, any versions of jQuery will work with the Barcode Web Fonts solution.
Users can simply copy and upload the entire subdirectory of a specific barcode web font from the ConnectCode solution and have barcodes created on their websites immediately. The "Resource/HTML5/webfonts/jQuery/<barcode name>" directory contains the web fonts, HTML web page and jQuery programs for the different barcodes shown below. Click on the links below to see a sample of the barcode generated.
Note : The registered version contains the full set of fonts of different sizes in the subdirectory. Users can remove the fonts that are not in use to reduce the number of files to upload.
Supported Browsers and Platforms
ConnectCode Certified
- Internet Explorer 8 (Windows)
- Internet Explorer 9 (Windows)
- Internet Explorer 10+ (Windows)
- Internet Explorer 11 (Windows)
- Microsoft Edge (Both Desktop and Mobile)
- Mozilla Firefox 22+ (Windows)
- Opera 11+ (Windows)
- Google Chrome 16+ (Windows)
- Google Chrome 16+ (Mac OS X)
- Safari 5.1+ (Mac OS X)
- iOS 5.0+ Mobile Browser (iOS)
- Windows Phone OS 8.0+ Mobile Browser (WP)
- Android 3.1+ (Honeycomb) Mobile Browser (Android API Level 12+)
- Mozilla Firefox Phone OS 1.0
+ Current and newer versions
Please note that you may have noticed that our web fonts solution works on many more browsers.
However, we currently only provide technical support for the above-mentioned browsers.
Looking inside the HTML web page
ConnectCode Barcode Web Fonts internally uses the @font-face CSS font selector as shown in the HTML headers below. The selector uses Embedded OpenType (eot), Web Open Font Format (woff) or Open Type fonts (otf) depending on the browser.
<head>
<STYLE TYPE="text/css" media="screen,print">
@font-face {
font-family: CCodeCodabar_S3_Trial;
src: url("fonts/ConnectCodeCodabar_S3_Trial.eot");
src: local("CCodeCodabar_S3_Trial"), url("fonts/ConnectCodeCodabar_S3_Trial.otf") format("opentype"), url("fonts/ConnectCodeCodabar_S3_Trial.woff") format("woff");
}
.barcode {font-weight: normal; font-style: normal; line-height:normal;
font-family: 'CCodeCodabar_S3_Trial', sans-serif; font-size: 32px}
</STYLE>
</head>
</body>
<div class=barcode>A123456A</div>
</body>
The script below shows how to use Javascript to validate the data and transform the data into barcode characters.
<script type="text/javascript">
function get_object(id) {
var object = null;
if (document.layers) {
object = document.layers[id];
} else if (document.all) {
object = document.all[id];
} else if (document.getElementById) {
object = document.getElementById(id);
}
return object;
}
get_object("barcode").innerHTML=ConnectCode_Encode_CodeCodabar(get_object("barcode").innerHTML);
</script>
The script below shows how to use jQuery to validate the data and transform the data into barcode characters.
<script type="text/javascript">
(document).ready(function() {
jQuery('.barcode').Encode_Codabar();
});
</script>
Notes on migrating to the latest version of the Barcode Web Fonts
ConnectCode strongly recommends users to migrate from the previous versions of Barcode Web Fonts to this latest version. This latest version uses Embedded Open Type (eot), Web Open Font Format (woff) and Open Type (otf) barcode fonts. This change enables the generation of barcodes using fonts on a wider variety of browsers in different operating systems such as Windows, Mac OS X, Android, Windows Phone, Firefox OS and iOS.
For a list of supported and certified browsers, please refer to the "Supported Browsers and Platforms" section.
How do I migrate from the previous version?
The migration is a simple two-step process as shown below:
1. Copy the Web Open Font Format fonts (*.woff) in the fonts subdirectory to your deployment directory.
For example, if you are using the Codabar barcode, you will need to copy the Web Open Font Format font (*.woff) files from the following directory to your deployment directory:
<ConnectCode Barcode Fonts directory>\Resource\webfonts\javascript\codabar\fonts
2. The second step is to modify the web page to support the WOFF fonts as illustrated below:
From
@font-face {
font-family: CCodeCodabar_S3;
src: url("fonts/ConnectCodeCodabar_S3.eot");
src: local("CCodeCodabar_S3"), url("fonts/ConnectCodeCodabar_S3.otf") format("opentype");
}
to
@font-face {
font-family: CCodeCodabar_S3;
src: url("fonts/ConnectCodeCodabar_S3.eot");
src: local("CCodeCodabar_S3"), url("fonts/ConnectCodeCodabar_S3.otf") format("opentype"), url("fonts/ConnectCodeCodabar_S3.woff") format("woff");
}
Customizing the barcodes in the HTML page
This section describes the properties and parameters that can be customized for the different barcodes in the HTML page. In general, the parameters are the Font Size, Font Name, Check Digit (0 for Off and 1 for On), Human Readable Text(0 for Off and 1 for On), Linkage(0 for Off and 1 for On), ITF Rectangle (0 for Off and 1 for On) and GS1Compliance (0 for Legacy and 1 for Strict).
The Barcode Web Fonts solution comes with seven different heights provided in seven different fonts with different names. The barcode names are appended with characters like "S1", "S2", etc., each represents a different height.
If you are using the trial version, the font name will have the word "_Trial" appended to it.
Codabar Barcode
Fonts with varying height supported :
- Font Name : CCodeCodabar_S1
Filenames : ConnectCodeCodabar_S1.otf, ConnectCodeCodabar_S1.woff and ConnectCodeCodabar_S1.eot
- Font Name : CCodeCodabar_S2
Filenames : ConnectCodeCodabar_S2.otf, ConnectCodeCodabar_S2.woff and ConnectCodeCodabar_S2.eot
- Font Name : CCodeCodabar_S3
Filenames : ConnectCodeCodabar_S3.otf, ConnectCodeCodabar_S3.woff and ConnectCodeCodabar_S3.eot
- Font Name : CCodeCodabar_S4
Filenames : ConnectCodeCodabar_S4.otf, ConnectCodeCodabar_S4.woff and ConnectCodeCodabar_S4.eot
- Font Name : CCodeCodabar_S5
Filenames : ConnectCodeCodabar_S5.otf, ConnectCodeCodabar_S5.woff and ConnectCodeCodabar_S5.eot
- Font Name : CCodeCodabar_S6
Filenames : ConnectCodeCodabar_S6.otf, ConnectCodeCodabar_S6.woff and ConnectCodeCodabar_S6.eot
- Font Name : CCodeCodabar_S7
Filenames : ConnectCodeCodabar_S7.otf, ConnectCodeCodabar_S7.woff and ConnectCodeCodabar_S7.eot
Javascript Function :
- ConnectCode_Encode_Codabar(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Codabar({data:12345678});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Codabar({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Code39 Barcode
Fonts with varying height supported :
- Font Name : CCode39_S1
Filenames : ConnectCode39_S1.otf, ConnectCode39_S1.woff and ConnectCode39_S1.eot
- Font Name : CCode39_S2
Filenames : ConnectCode39_S2.otf, ConnectCode39_S2.woff and ConnectCode39_S2.eot
- Font Name : CCode39_S3
Filenames : ConnectCode39_S3.otf, ConnectCode39_S3.woff and ConnectCode39_S3.eot
- Font Name : CCode39_S4
Filenames : ConnectCode39_S4.otf, ConnectCode39_S4.woff and ConnectCode39_S4.eot
- Font Name : CCode39_S5
Filenames : ConnectCode39_S5.otf, ConnectCode39_S5.woff and ConnectCode39_S5.eot
- Font Name : CCode39_S6
Filenames : ConnectCode39_S6.otf, ConnectCode39_S6.woff and ConnectCode39_S6.eot
- Font Name : CCode39_S7
Filenames : ConnectCode39_S7.otf, ConnectCode39_S7.woff and ConnectCode39_S7.eot
Javascript Function :
- ConnectCode_Encode_Code39(data,checkDigit)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code39({data:12345678, checkDigit:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code39({checkDigit:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Code39 Ascii Barcode
Fonts with varying height supported :
- Font Name : CCode39_S1
Filenames : ConnectCode39_S1.otf, ConnectCode39_S1.woff and ConnectCode39_S1.eot
- Font Name : CCode39_S2
Filenames : ConnectCode39_S2.otf, ConnectCode39_S2.woff and ConnectCode39_S2.eot
- Font Name : CCode39_S3
Filenames : ConnectCode39_S3.otf, ConnectCode39_S3.woff and ConnectCode39_S3.eot
- Font Name : CCode39_S4
Filenames : ConnectCode39_S4.otf, ConnectCode39_S4.woff and ConnectCode39_S4.eot
- Font Name : CCode39_S5
Filenames : ConnectCode39_S5.otf, ConnectCode39_S5.woff and ConnectCode39_S5.eot
- Font Name : CCode39_S6
Filenames : ConnectCode39_S6.otf, ConnectCode39_S6.woff and ConnectCode39_S6.eot
- Font Name : CCode39_S7
Filenames : ConnectCode39_S7.otf, ConnectCode39_S7.woff and ConnectCode39_S7.eot
Javascript Function :
- ConnectCode_Encode_CodeCode39Ascii(data,checkDigit)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code39Ascii({data:12345678, checkDigit:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code39Ascii({checkDigit:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Code93 Barcode
Fonts with varying height supported :
- Font Name : CCode93_S1
Filenames : ConnectCode93_S1.otf, ConnectCode93_S1.woff and ConnectCode93_S1.eot
- Font Name : CCode93_S2
Filenames : ConnectCode93_S2.otf, ConnectCode93_S2.woff and ConnectCode93_S2.eot
- Font Name : CCode93_S3
Filenames : ConnectCode93_S3.otf, ConnectCode93_S3.woff and ConnectCode93_S3.eot
- Font Name : CCode93_S4
Filenames : ConnectCode93_S4.otf, ConnectCode93_S4.woff and ConnectCode93_S4.eot
- Font Name : CCode93_S5
Filenames : ConnectCode93_S5.otf, ConnectCode93_S5.woff and ConnectCode93_S5.eot
- Font Name : CCode93_S6
Filenames : ConnectCode93_S6.otf, ConnectCode93_S6.woff and ConnectCode93_S6.eot
- Font Name : CCode93_S7
Filenames : ConnectCode93_S7.otf, ConnectCode93_S7.woff and ConnectCode93_S7.eot
Javascript Function :
- ConnectCode_Encode_Code93(data,checkDigit)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code93({data:12345678, checkDigit:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code93({checkDigit:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Code128 A Barcode
Fonts with varying height supported :
- Font Name : CCode128_S1
Filenames : ConnectCode128_S1.otf, ConnectCode128_S1.woff and ConnectCode128_S1.eot
- Font Name : CCode128_S2
Filenames : ConnectCode128_S2.otf, ConnectCode128_S2.woff and ConnectCode128_S2.eot
- Font Name : CCode128_S3
Filenames : ConnectCode128_S3.otf, ConnectCode128_S3.woff and ConnectCode128_S3.eot
- Font Name : CCode128_S4
Filenames : ConnectCode128_S4.otf, ConnectCode128_S4.woff and ConnectCode128_S4.eot
- Font Name : CCode128_S5
Filenames : ConnectCode128_S5.otf, ConnectCode128_S5.woff and ConnectCode128_S5.eot
- Font Name : CCode128_S6
Filenames : ConnectCode128_S6.otf, ConnectCode128_S6.woff and ConnectCode128_S6.eot
- Font Name : CCode128_S7
Filenames : ConnectCode128_S7.otf, ConnectCode128_S7.woff and ConnectCode128_S7.eot
Javascript Function :
- ConnectCode_Encode_Code128A(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code128A({data:12345678});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code128A({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Code128 B Barcode
Fonts with varying height supported :
- Font Name : CCode128_S1
Filenames : ConnectCode128_S1.otf, ConnectCode128_S1.woff and ConnectCode128_S1.eot
- Font Name : CCode128_S2
Filenames : ConnectCode128_S2.otf, ConnectCode128_S2.woff and ConnectCode128_S2.eot
- Font Name : CCode128_S3
Filenames : ConnectCode128_S3.otf, ConnectCode128_S3.woff and ConnectCode128_S3.eot
- Font Name : CCode128_S4
Filenames : ConnectCode128_S4.otf, ConnectCode128_S4.woff and ConnectCode128_S4.eot
- Font Name : CCode128_S5
Filenames : ConnectCode128_S5.otf, ConnectCode128_S5.woff and ConnectCode128_S5.eot
- Font Name : CCode128_S6
Filenames : ConnectCode128_S6.otf, ConnectCode128_S6.woff and ConnectCode128_S6.eot
- Font Name : CCode128_S7
Filenames : ConnectCode128_S7.otf, ConnectCode128_S7.woff and ConnectCode128_S7.eot
Javascript Function :
- ConnectCode_Encode_Code128B(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code128B({data:12345678});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code128B({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Code128 C Barcode
Fonts with varying height supported :
- Font Name : CCode128_S1
Filenames : ConnectCode128_S1.otf, ConnectCode128_S1.woff and ConnectCode128_S1.eot
- Font Name : CCode128_S2
Filenames : ConnectCode128_S2.otf, ConnectCode128_S2.woff and ConnectCode128_S2.eot
- Font Name : CCode128_S3
Filenames : ConnectCode128_S3.otf, ConnectCode128_S3.woff and ConnectCode128_S3.eot
- Font Name : CCode128_S4
Filenames : ConnectCode128_S4.otf, ConnectCode128_S4.woff and ConnectCode128_S4.eot
- Font Name : CCode128_S5
Filenames : ConnectCode128_S5.otf, ConnectCode128_S5.woff and ConnectCode128_S5.eot
- Font Name : CCode128_S6
Filenames : ConnectCode128_S6.otf, ConnectCode128_S6.woff and ConnectCode128_S6.eot
- Font Name : CCode128_S7
Filenames : ConnectCode128_S7.otf, ConnectCode128_S7.woff and ConnectCode128_S7.eot
Javascript Function :
- ConnectCode_Encode_Code128C(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code128C({data:12345678});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code128C({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Code128 Auto Barcode
Fonts with varying height supported :
- Font Name : CCode128_S1
Filenames : ConnectCode128_S1.otf, ConnectCode128_S1.woff and ConnectCode128_S1.eot
- Font Name : CCode128_S2
Filenames : ConnectCode128_S2.otf, ConnectCode128_S2.woff and ConnectCode128_S2.eot
- Font Name : CCode128_S3
Filenames : ConnectCode128_S3.otf, ConnectCode128_S3.woff and ConnectCode128_S3.eot
- Font Name : CCode128_S4
Filenames : ConnectCode128_S4.otf, ConnectCode128_S4.woff and ConnectCode128_S4.eot
- Font Name : CCode128_S5
Filenames : ConnectCode128_S5.otf, ConnectCode128_S5.woff and ConnectCode128_S5.eot
- Font Name : CCode128_S6
Filenames : ConnectCode128_S6.otf, ConnectCode128_S6.woff and ConnectCode128_S6.eot
- Font Name : CCode128_S7
Filenames : ConnectCode128_S7.otf, ConnectCode128_S7.woff and ConnectCode128_S7.eot
Javascript Function :
- ConnectCode_Encode_Code128Auto(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code128Auto({data:12345678});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code128Auto({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
UCCEAN Barcode
Fonts with varying height supported :
- Font Name : CCode128_S1
Filenames : ConnectCode128_S1.otf, ConnectCode128_S1.woff and ConnectCode128_S1.eot
- Font Name : CCode128_S2
Filenames : ConnectCode128_S2.otf, ConnectCode128_S2.woff and ConnectCode128_S2.eot
- Font Name : CCode128_S3
Filenames : ConnectCode128_S3.otf, ConnectCode128_S3.woff and ConnectCode128_S3.eot
- Font Name : CCode128_S4
Filenames : ConnectCode128_S4.otf, ConnectCode128_S4.woff and ConnectCode128_S4.eot
- Font Name : CCode128_S5
Filenames : ConnectCode128_S5.otf, ConnectCode128_S5.woff and ConnectCode128_S5.eot
- Font Name : CCode128_S6
Filenames : ConnectCode128_S6.otf, ConnectCode128_S6.woff and ConnectCode128_S6.eot
- Font Name : CCode128_S7
Filenames : ConnectCode128_S7.otf, ConnectCode128_S7.woff and ConnectCode128_S7.eot
Javascript Function :
- ConnectCode_Encode_Code128UCCEAN(data,gs1Compliance)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Code128UCCEAN({data:12345678,gs1Compliance:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Code128UCCEAN({gs1Compliance:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
I2of5 Barcode
Fonts with varying height supported :
- Font Name : CCodeI2of5_S1
Filenames : ConnectCodeI2of5_S1.otf, ConnectCodeI2of5_S1.woff and ConnectCodeI2of5_S1.eot
- Font Name : CCodeI2of5_S2
Filenames : ConnectCodeI2of5_S2.otf, ConnectCodeI2of5_S2.woff and ConnectCodeI2of5_S2.eot
- Font Name : CCodeI2of5_S3
Filenames : ConnectCodeI2of5_S3.otf, ConnectCodeI2of5_S3.woff and ConnectCodeI2of5_S3.eot
- Font Name : CCodeI2of5_S4
Filenames : ConnectCodeI2of5_S4.otf, ConnectCodeI2of5_S4.woff and ConnectCodeI2of5_S4.eot
- Font Name : CCodeI2of5_S5
Filenames : ConnectCodeI2of5_S5.otf, ConnectCodeI2of5_S5.woff and ConnectCodeI2of5_S5.eot
- Font Name : CCodeI2of5_S6
Filenames : ConnectCodeI2of5_S6.otf, ConnectCodeI2of5_S6.woff and ConnectCodeI2of5_S6.eot
- Font Name : CCodeI2of5_S7
Filenames : ConnectCodeI2of5_S7.otf, ConnectCodeI2of5_S7.woff and ConnectCodeI2of5_S7.eot
Javascript Function :
- ConnectCode_Encode_I2of5(data,checkDigit)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_I2of5({data:12345678, checkDigit:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_I2of5({checkDigit:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Industrial 2of5 Barcode
Fonts with varying height supported :
- Font Name : CCodeIND2of5_S1
Filenames : ConnectCodeIND2of5_S1.otf, ConnectCodeIND2of5_S1.woff and ConnectCodeIND2of5_S1.eot
- Font Name : CCodeIND2of5_S2
Filenames : ConnectCodeIND2of5_S2.otf, ConnectCodeIND2of5_S2.woff and ConnectCodeIND2of5_S2.eot
- Font Name : CCodeIND2of5_S3
Filenames : ConnectCodeIND2of5_S3.otf, ConnectCodeIND2of5_S3.woff and ConnectCodeIND2of5_S3.eot
- Font Name : CCodeIND2of5_S4
Filenames : ConnectCodeIND2of5_S4.otf, ConnectCodeIND2of5_S4.woff and ConnectCodeIND2of5_S4.eot
- Font Name : CCodeIND2of5_S5
Filenames : ConnectCodeIND2of5_S5.otf, ConnectCodeIND2of5_S5.woff and ConnectCodeIND2of5_S5.eot
- Font Name : CCodeIND2of5_S6
Filenames : ConnectCodeIND2of5_S6.otf, ConnectCodeIND2of5_S6.woff and ConnectCodeIND2of5_S6.eot
- Font Name : CCodeIND2of5_S7
Filenames : ConnectCodeIND2of5_S7.otf, ConnectCodeIND2of5_S7.woff and ConnectCodeIND2of5_S7.eot
Javascript Function :
- ConnectCode_Encode_Industrial2of5(data,checkDigit)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_Industrial2of5({data:12345678, checkDigit:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_Industrial2of5({checkDigit:0,humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
ITF14 Barcode
Fonts with varying height supported :
- Font Name : CCodeITF_S1
Filenames : ConnectCodeITF_S1.otf, ConnectCodeITF_S1.woff and ConnectCodeITF_S1.eot
- Font Name : CCodeITF_S2
Filenames : ConnectCodeITF_S2.otf, ConnectCodeITF_S2.woff and ConnectCodeITF_S2.eot
- Font Name : CCodeITF_S3
Filenames : ConnectCodeITF_S3.otf, ConnectCodeITF_S3.woff and ConnectCodeITF_S3.eot
- Font Name : CCodeITF_S4
Filenames : ConnectCodeITF_S4.otf, ConnectCodeITF_S4.woff and ConnectCodeITF_S4.eot
- Font Name : CCodeITF_S5
Filenames : ConnectCodeITF_S5.otf, ConnectCodeITF_S5.woff and ConnectCodeITF_S5.eot
- Font Name : CCodeITF_S6
Filenames : ConnectCodeITF_S6.otf, ConnectCodeITF_S6.woff and ConnectCodeITF_S6.eot
- Font Name : CCodeITF_S7
Filenames : ConnectCodeITF_S7.otf, ConnectCodeITF_S7.woff and ConnectCodeITF_S7.eot
Javascript Function :
- ConnectCode_Encode_ITF14(data,checkDigit,itfRectangle)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_ITF14({data:12345678, checkDigit:0, itfRectangle:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_ITF14({checkDigit:0, itfRectangle:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
Modified Plessy Barcode
Fonts with varying height supported :
- Font Name : CCodeMSI_S1
Filenames : ConnectCodeMSI_S1.otf, ConnectCodeMSI_S1.woff and ConnectCodeMSI_S1.eot
- Font Name : CCodeMSI_S2
Filenames : ConnectCodeMSI_S2.otf, ConnectCodeMSI_S2.woff and ConnectCodeMSI_S2.eot
- Font Name : CCodeMSI_S3
Filenames : ConnectCodeMSI_S3.otf, ConnectCodeMSI_S3.woff and ConnectCodeMSI_S3.eot
- Font Name : CCodeMSI_S4
Filenames : ConnectCodeMSI_S4.otf, ConnectCodeMSI_S4.woff and ConnectCodeMSI_S4.eot
- Font Name : CCodeMSI_S5
Filenames : ConnectCodeMSI_S5.otf, ConnectCodeMSI_S5.woff and ConnectCodeMSI_S5.eot
- Font Name : CCodeMSI_S6
Filenames : ConnectCodeMSI_S6.otf, ConnectCodeMSI_S6.woff and ConnectCodeMSI_S6.eot
- Font Name : CCodeMSI_S7
Filenames : ConnectCodeMSI_S7.otf, ConnectCodeMSI_S7.woff and ConnectCodeMSI_S7.eot
Javascript Function :
- ConnectCode_Encode_ModifiedPlessy(data,checkDigit)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_ModifiedPlessy({data:12345678, checkDigit:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_ModifiedPlessy({checkDigit:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
POSTNET Barcode
Fonts supported (Fixed Font Size 12):
- Font Name : CCodePostnet
Filenames : ConnectCodePostnet.otf and ConnectCodePostnet.eot
Javascript Function :
- ConnectCode_Encode_POSTNET(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_POSTNET({data:12345678});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_POSTNET({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
EAN13 Barcode
Fonts with varying height supported :
- Font Name : CCodeUPCEAN_S1
Filenames : ConnectCodeUPCEAN_S1.otf, ConnectCodeUPCEAN_S1.woff and ConnectCodeUPCEAN_S1.eot
- Font Name : CCodeUPCEAN_S2
Filenames : ConnectCodeUPCEAN_S2.otf, ConnectCodeUPCEAN_S2.woff and ConnectCodeUPCEAN_S2.eot
- Font Name : CCodeUPCEAN_S3
Filenames : ConnectCodeUPCEAN_S3.otf, ConnectCodeUPCEAN_S3.woff and ConnectCodeUPCEAN_S3.eot
- Font Name : CCodeUPCEAN_S4
Filenames : ConnectCodeUPCEAN_S4.otf, ConnectCodeUPCEAN_S4.woff and ConnectCodeUPCEAN_S4.eot
- Font Name : CCodeUPCEAN_S5
Filenames : ConnectCodeUPCEAN_S5.otf, ConnectCodeUPCEAN_S5.woff and ConnectCodeUPCEAN_S5.eot
- Font Name : CCodeUPCEAN_S6
Filenames : ConnectCodeUPCEAN_S6.otf, ConnectCodeUPCEAN_S6.woff and ConnectCodeUPCEAN_S6.eot
- Font Name : CCodeUPCEAN_S7
Filenames : ConnectCodeUPCEAN_S7.otf, ConnectCodeUPCEAN_S7.woff and ConnectCodeUPCEAN_S7.eot
Fonts with embedded Human Readable Text :
- Font Name : CCodeUPCEAN_HRS1
Filenames : ConnectCodeUPCEAN_HRS1.otf, ConnectCodeUPCEAN_HRS1.woff and ConnectCodeUPCEAN_HRS1.eot
- Font Name : CCodeUPCEAN_HRS2
Filenames : ConnectCodeUPCEAN_HRS2.otf, ConnectCodeUPCEAN_HRS2.woff and ConnectCodeUPCEAN_HRS2.eot
- Font Name : CCodeUPCEAN_HRS3
Filenames : ConnectCodeUPCEAN_HRS3.otf, ConnectCodeUPCEAN_HRS3.woff and ConnectCodeUPCEAN_HRS3.eot
- Font Name : CCodeUPCEAN_HRS4
Filenames : ConnectCodeUPCEAN_HRS4.otf, ConnectCodeUPCEAN_HRS4.woff and ConnectCodeUPCEAN_HRS4.eot
- Font Name : CCodeUPCEAN_HRS5
Filenames : ConnectCodeUPCEAN_HRS5.otf, ConnectCodeUPCEAN_HRS5.woff and ConnectCodeUPCEAN_HRS5.eot
- Font Name : CCodeUPCEAN_HRS6
Filenames : ConnectCodeUPCEAN_HRS6.otf, ConnectCodeUPCEAN_HRS6.woff and ConnectCodeUPCEAN_HRS6.eot
- Font Name : CCodeUPCEAN_HRS7
Filenames : ConnectCodeUPCEAN_HRS7.otf, ConnectCodeUPCEAN_HRS7.woff and ConnectCodeUPCEAN_HRS7.eot
Fonts with Human Text at the Top of the barcode (typically only used by EXT2/EXT5. For this barcode, only 3 font sizes are supported) :
- Font Name : CCodeUPCEAN_HRTS1
Filenames : ConnectCodeUPCEAN_HRTS1.otf, ConnectCodeUPCEAN_HRTS1.woff and ConnectCodeUPCEAN_HRTS1.eot
- Font Name : CCodeUPCEAN_HRTS2
Filenames : ConnectCodeUPCEAN_HRTS2.otf, ConnectCodeUPCEAN_HRTS2.woff and ConnectCodeUPCEAN_HRTS2.eot
- Font Name : CCodeUPCEAN_HRTS3
Filenames : ConnectCodeUPCEAN_HRTS3.otf, ConnectCodeUPCEAN_HRTS3.woff and ConnectCodeUPCEAN_HRTS3.eot
Javascript Function :
- ConnectCode_Encode_EAN13(data,humanReadable)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_EAN13({data:12345678, hr:0});
data is optional. The text selected by jQuery will be used by default.
hr means Embedded Human Readable Text
- jQuery('.barcodetextselector').Encode_EAN13({hr:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
EAN8 Barcode
Fonts with varying height supported :
- Font Name : CCodeUPCEAN_S1
Filenames : ConnectCodeUPCEAN_S1.otf, ConnectCodeUPCEAN_S1.woff and ConnectCodeUPCEAN_S1.eot
- Font Name : CCodeUPCEAN_S2
Filenames : ConnectCodeUPCEAN_S2.otf, ConnectCodeUPCEAN_S2.woff and ConnectCodeUPCEAN_S2.eot
- Font Name : CCodeUPCEAN_S3
Filenames : ConnectCodeUPCEAN_S3.otf, ConnectCodeUPCEAN_S3.woff and ConnectCodeUPCEAN_S3.eot
- Font Name : CCodeUPCEAN_S4
Filenames : ConnectCodeUPCEAN_S4.otf, ConnectCodeUPCEAN_S4.woff and ConnectCodeUPCEAN_S4.eot
- Font Name : CCodeUPCEAN_S5
Filenames : ConnectCodeUPCEAN_S5.otf, ConnectCodeUPCEAN_S5.woff and ConnectCodeUPCEAN_S5.eot
- Font Name : CCodeUPCEAN_S6
Filenames : ConnectCodeUPCEAN_S6.otf, ConnectCodeUPCEAN_S6.woff and ConnectCodeUPCEAN_S6.eot
- Font Name : CCodeUPCEAN_S7
Filenames : ConnectCodeUPCEAN_S7.otf, ConnectCodeUPCEAN_S7.woff and ConnectCodeUPCEAN_S7.eot
Fonts with embedded Human Readable Text :
- Font Name : CCodeUPCEAN_HRS1
Filenames : ConnectCodeUPCEAN_HRS1.otf, ConnectCodeUPCEAN_HRS1.woff and ConnectCodeUPCEAN_HRS1.eot
- Font Name : CCodeUPCEAN_HRS2
Filenames : ConnectCodeUPCEAN_HRS2.otf, ConnectCodeUPCEAN_HRS2.woff and ConnectCodeUPCEAN_HRS2.eot
- Font Name : CCodeUPCEAN_HRS3
Filenames : ConnectCodeUPCEAN_HRS3.otf, ConnectCodeUPCEAN_HRS3.woff and ConnectCodeUPCEAN_HRS3.eot
- Font Name : CCodeUPCEAN_HRS4
Filenames : ConnectCodeUPCEAN_HRS4.otf, ConnectCodeUPCEAN_HRS4.woff and ConnectCodeUPCEAN_HRS4.eot
- Font Name : CCodeUPCEAN_HRS5
Filenames : ConnectCodeUPCEAN_HRS5.otf, ConnectCodeUPCEAN_HRS5.woff and ConnectCodeUPCEAN_HRS5.eot
- Font Name : CCodeUPCEAN_HRS6
Filenames : ConnectCodeUPCEAN_HRS6.otf, ConnectCodeUPCEAN_HRS6.woff and ConnectCodeUPCEAN_HRS6.eot
- Font Name : CCodeUPCEAN_HRS7
Filenames : ConnectCodeUPCEAN_HRS7.otf, ConnectCodeUPCEAN_HRS7.woff and ConnectCodeUPCEAN_HRS7.eot
Fonts with Human Text at the Top of the barcode (typically only used by EXT2/EXT5. For this barcode, only 3 font sizes are supported) :
- Font Name : CCodeUPCEAN_HRTS1
Filenames : ConnectCodeUPCEAN_HRTS1.otf, ConnectCodeUPCEAN_HRTS1.woff and ConnectCodeUPCEAN_HRTS1.eot
- Font Name : CCodeUPCEAN_HRTS2
Filenames : ConnectCodeUPCEAN_HRTS2.otf, ConnectCodeUPCEAN_HRTS2.woff and ConnectCodeUPCEAN_HRTS2.eot
- Font Name : CCodeUPCEAN_HRTS3
Filenames : ConnectCodeUPCEAN_HRTS3.otf, ConnectCodeUPCEAN_HRTS3.woff and ConnectCodeUPCEAN_HRTS3.eot
Javascript Function :
- ConnectCode_Encode_EAN8(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_EAN8({data:12345678});
data is optional. The text selected by jQuery will be used by default.
The Embedded Human Readable Text option is not required as in other UPCEAN barcodes. Simply change the font to one with the Human Readable Text.
- jQuery('.barcodetextselector').Encode_EAN8({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
UPCA Barcode
Fonts with varying height supported :
- Font Name : CCodeUPCEAN_S1
Filenames : ConnectCodeUPCEAN_S1.otf, ConnectCodeUPCEAN_S1.woff and ConnectCodeUPCEAN_S1.eot
- Font Name : CCodeUPCEAN_S2
Filenames : ConnectCodeUPCEAN_S2.otf, ConnectCodeUPCEAN_S2.woff and ConnectCodeUPCEAN_S2.eot
- Font Name : CCodeUPCEAN_S3
Filenames : ConnectCodeUPCEAN_S3.otf, ConnectCodeUPCEAN_S3.woff and ConnectCodeUPCEAN_S3.eot
- Font Name : CCodeUPCEAN_S4
Filenames : ConnectCodeUPCEAN_S4.otf, ConnectCodeUPCEAN_S4.woff and ConnectCodeUPCEAN_S4.eot
- Font Name : CCodeUPCEAN_S5
Filenames : ConnectCodeUPCEAN_S5.otf, ConnectCodeUPCEAN_S5.woff and ConnectCodeUPCEAN_S5.eot
- Font Name : CCodeUPCEAN_S6
Filenames : ConnectCodeUPCEAN_S6.otf, ConnectCodeUPCEAN_S6.woff and ConnectCodeUPCEAN_S6.eot
- Font Name : CCodeUPCEAN_S7
Filenames : ConnectCodeUPCEAN_S7.otf, ConnectCodeUPCEAN_S7.woff and ConnectCodeUPCEAN_S7.eot
Fonts with embedded Human Readable Text :
- Font Name : CCodeUPCEAN_HRS1
Filenames : ConnectCodeUPCEAN_HRS1.otf, ConnectCodeUPCEAN_HRS1.woff and ConnectCodeUPCEAN_HRS1.eot
- Font Name : CCodeUPCEAN_HRS2
Filenames : ConnectCodeUPCEAN_HRS2.otf, ConnectCodeUPCEAN_HRS2.woff and ConnectCodeUPCEAN_HRS2.eot
- Font Name : CCodeUPCEAN_HRS3
Filenames : ConnectCodeUPCEAN_HRS3.otf, ConnectCodeUPCEAN_HRS3.woff and ConnectCodeUPCEAN_HRS3.eot
- Font Name : CCodeUPCEAN_HRS4
Filenames : ConnectCodeUPCEAN_HRS4.otf, ConnectCodeUPCEAN_HRS4.woff and ConnectCodeUPCEAN_HRS4.eot
- Font Name : CCodeUPCEAN_HRS5
Filenames : ConnectCodeUPCEAN_HRS5.otf, ConnectCodeUPCEAN_HRS5.woff and ConnectCodeUPCEAN_HRS5.eot
- Font Name : CCodeUPCEAN_HRS6
Filenames : ConnectCodeUPCEAN_HRS6.otf, ConnectCodeUPCEAN_HRS6.woff and ConnectCodeUPCEAN_HRS6.eot
- Font Name : CCodeUPCEAN_HRS7
Filenames : ConnectCodeUPCEAN_HRS7.otf, ConnectCodeUPCEAN_HRS7.woff and ConnectCodeUPCEAN_HRS7.eot
Fonts with Human Text at the Top of the barcode (typically only used by EXT2/EXT5. For this barcode, only 3 font sizes are supported) :
- Font Name : CCodeUPCEAN_HRTS1
Filenames : ConnectCodeUPCEAN_HRTS1.otf, ConnectCodeUPCEAN_HRTS1.woff and ConnectCodeUPCEAN_HRTS1.eot
- Font Name : CCodeUPCEAN_HRTS2
Filenames : ConnectCodeUPCEAN_HRTS2.otf, ConnectCodeUPCEAN_HRTS2.woff and ConnectCodeUPCEAN_HRTS2.eot
- Font Name : CCodeUPCEAN_HRTS3
Filenames : ConnectCodeUPCEAN_HRTS3.otf, ConnectCodeUPCEAN_HRTS3.woff and ConnectCodeUPCEAN_HRTS3.eot
Javascript Function :
- ConnectCode_Encode_UPCA(data,humanReadable)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_UPCA({data:12345678, hr:0});
data is optional. The text selected by jQuery will be used by default.
hr means Embedded Human Readable Text
- jQuery('.barcodetextselector').Encode_UPCA({hr:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
UPCE Barcode
Fonts with varying height supported :
- Font Name : CCodeUPCEAN_S1
Filenames : ConnectCodeUPCEAN_S1.otf, ConnectCodeUPCEAN_S1.woff and ConnectCodeUPCEAN_S1.eot
- Font Name : CCodeUPCEAN_S2
Filenames : ConnectCodeUPCEAN_S2.otf, ConnectCodeUPCEAN_S2.woff and ConnectCodeUPCEAN_S2.eot
- Font Name : CCodeUPCEAN_S3
Filenames : ConnectCodeUPCEAN_S3.otf, ConnectCodeUPCEAN_S3.woff and ConnectCodeUPCEAN_S3.eot
- Font Name : CCodeUPCEAN_S4
Filenames : ConnectCodeUPCEAN_S4.otf, ConnectCodeUPCEAN_S4.woff and ConnectCodeUPCEAN_S4.eot
- Font Name : CCodeUPCEAN_S5
Filenames : ConnectCodeUPCEAN_S5.otf, ConnectCodeUPCEAN_S5.woff and ConnectCodeUPCEAN_S5.eot
- Font Name : CCodeUPCEAN_S6
Filenames : ConnectCodeUPCEAN_S6.otf, ConnectCodeUPCEAN_S6.woff and ConnectCodeUPCEAN_S6.eot
- Font Name : CCodeUPCEAN_S7
Filenames : ConnectCodeUPCEAN_S7.otf, ConnectCodeUPCEAN_S7.woff and ConnectCodeUPCEAN_S7.eot
Fonts with embedded Human Readable Text :
- Font Name : CCodeUPCEAN_HRS1
Filenames : ConnectCodeUPCEAN_HRS1.otf, ConnectCodeUPCEAN_HRS1.woff and ConnectCodeUPCEAN_HRS1.eot
- Font Name : CCodeUPCEAN_HRS2
Filenames : ConnectCodeUPCEAN_HRS2.otf, ConnectCodeUPCEAN_HRS2.woff and ConnectCodeUPCEAN_HRS2.eot
- Font Name : CCodeUPCEAN_HRS3
Filenames : ConnectCodeUPCEAN_HRS3.otf, ConnectCodeUPCEAN_HRS3.woff and ConnectCodeUPCEAN_HRS3.eot
- Font Name : CCodeUPCEAN_HRS4
Filenames : ConnectCodeUPCEAN_HRS4.otf, ConnectCodeUPCEAN_HRS4.woff and ConnectCodeUPCEAN_HRS4.eot
- Font Name : CCodeUPCEAN_HRS5
Filenames : ConnectCodeUPCEAN_HRS5.otf, ConnectCodeUPCEAN_HRS5.woff and ConnectCodeUPCEAN_HRS5.eot
- Font Name : CCodeUPCEAN_HRS6
Filenames : ConnectCodeUPCEAN_HRS6.otf, ConnectCodeUPCEAN_HRS6.woff and ConnectCodeUPCEAN_HRS6.eot
- Font Name : CCodeUPCEAN_HRS7
Filenames : ConnectCodeUPCEAN_HRS7.otf, ConnectCodeUPCEAN_HRS7.woff and ConnectCodeUPCEAN_HRS7.eot
Fonts with Human Text at the Top of the barcode (typically only used by EXT2/EXT5. For this barcode, only 3 font sizes are supported) :
- Font Name : CCodeUPCEAN_HRTS1
Filenames : ConnectCodeUPCEAN_HRTS1.otf, ConnectCodeUPCEAN_HRTS1.woff and ConnectCodeUPCEAN_HRTS1.eot
- Font Name : CCodeUPCEAN_HRTS2
Filenames : ConnectCodeUPCEAN_HRTS2.otf, ConnectCodeUPCEAN_HRTS2.woff and ConnectCodeUPCEAN_HRTS2.eot
- Font Name : CCodeUPCEAN_HRTS3
Filenames : ConnectCodeUPCEAN_HRTS3.otf, ConnectCodeUPCEAN_HRTS3.woff and ConnectCodeUPCEAN_HRTS3.eot
Javascript Function :
- ConnectCode_Encode_UPCE(data,humanReadable)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_UPCE({data:12345678, hr:0});
data is optional. The text selected by jQuery will be used by default.
hr means Embedded Human Readable Text
- jQuery('.barcodetextselector').Encode_UPCE({hr:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
EXT2 Barcode
Fonts with varying height supported :
- Font Name : CCodeUPCEAN_S1
Filenames : ConnectCodeUPCEAN_S1.otf, ConnectCodeUPCEAN_S1.woff and ConnectCodeUPCEAN_S1.eot
- Font Name : CCodeUPCEAN_S2
Filenames : ConnectCodeUPCEAN_S2.otf, ConnectCodeUPCEAN_S2.woff and ConnectCodeUPCEAN_S2.eot
- Font Name : CCodeUPCEAN_S3
Filenames : ConnectCodeUPCEAN_S3.otf, ConnectCodeUPCEAN_S3.woff and ConnectCodeUPCEAN_S3.eot
- Font Name : CCodeUPCEAN_S4
Filenames : ConnectCodeUPCEAN_S4.otf, ConnectCodeUPCEAN_S4.woff and ConnectCodeUPCEAN_S4.eot
- Font Name : CCodeUPCEAN_S5
Filenames : ConnectCodeUPCEAN_S5.otf, ConnectCodeUPCEAN_S5.woff and ConnectCodeUPCEAN_S5.eot
- Font Name : CCodeUPCEAN_S6
Filenames : ConnectCodeUPCEAN_S6.otf, ConnectCodeUPCEAN_S6.woff and ConnectCodeUPCEAN_S6.eot
- Font Name : CCodeUPCEAN_S7
Filenames : ConnectCodeUPCEAN_S7.otf, ConnectCodeUPCEAN_S7.woff and ConnectCodeUPCEAN_S7.eot
Fonts with embedded Human Readable Text :
- Font Name : CCodeUPCEAN_HRS1
Filenames : ConnectCodeUPCEAN_HRS1.otf, ConnectCodeUPCEAN_HRS1.woff and ConnectCodeUPCEAN_HRS1.eot
- Font Name : CCodeUPCEAN_HRS2
Filenames : ConnectCodeUPCEAN_HRS2.otf, ConnectCodeUPCEAN_HRS2.woff and ConnectCodeUPCEAN_HRS2.eot
- Font Name : CCodeUPCEAN_HRS3
Filenames : ConnectCodeUPCEAN_HRS3.otf, ConnectCodeUPCEAN_HRS3.woff and ConnectCodeUPCEAN_HRS3.eot
- Font Name : CCodeUPCEAN_HRS4
Filenames : ConnectCodeUPCEAN_HRS4.otf, ConnectCodeUPCEAN_HRS4.woff and ConnectCodeUPCEAN_HRS4.eot
- Font Name : CCodeUPCEAN_HRS5
Filenames : ConnectCodeUPCEAN_HRS5.otf, ConnectCodeUPCEAN_HRS5.woff and ConnectCodeUPCEAN_HRS5.eot
- Font Name : CCodeUPCEAN_HRS6
Filenames : ConnectCodeUPCEAN_HRS6.otf, ConnectCodeUPCEAN_HRS6.woff and ConnectCodeUPCEAN_HRS6.eot
- Font Name : CCodeUPCEAN_HRS7
Filenames : ConnectCodeUPCEAN_HRS7.otf, ConnectCodeUPCEAN_HRS7.woff and ConnectCodeUPCEAN_HRS7.eot
Fonts with Human Text at the Top of the barcode (typically only used by EXT2/EXT5. For this barcode, only 3 font sizes are supported) :
- Font Name : CCodeUPCEAN_HRTS1
Filenames : ConnectCodeUPCEAN_HRTS1.otf, ConnectCodeUPCEAN_HRTS1.woff and ConnectCodeUPCEAN_HRTS1.eot
- Font Name : CCodeUPCEAN_HRTS2
Filenames : ConnectCodeUPCEAN_HRTS2.otf, ConnectCodeUPCEAN_HRTS2.woff and ConnectCodeUPCEAN_HRTS2.eot
- Font Name : CCodeUPCEAN_HRTS3
Filenames : ConnectCodeUPCEAN_HRTS3.otf, ConnectCodeUPCEAN_HRTS3.woff and ConnectCodeUPCEAN_HRTS3.eot
Javascript Function :
- ConnectCode_Encode_EXT2(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_EXT2({data:12345678});
data is optional. The text selected by jQuery will be used by default.
The Embedded Human Readable Text option is not required as in other UPCEAN barcodes. Simply change the font to one with the Human Readable Text.
- jQuery('.barcodetextselector').Encode_EXT2({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
EXT5 Barcode
Fonts with varying height supported :
- Font Name : CCodeUPCEAN_S1
Filenames : ConnectCodeUPCEAN_S1.otf, ConnectCodeUPCEAN_S1.woff and ConnectCodeUPCEAN_S1.eot
- Font Name : CCodeUPCEAN_S2
Filenames : ConnectCodeUPCEAN_S2.otf, ConnectCodeUPCEAN_S2.woff and ConnectCodeUPCEAN_S2.eot
- Font Name : CCodeUPCEAN_S3
Filenames : ConnectCodeUPCEAN_S3.otf, ConnectCodeUPCEAN_S3.woff and ConnectCodeUPCEAN_S3.eot
- Font Name : CCodeUPCEAN_S4
Filenames : ConnectCodeUPCEAN_S4.otf, ConnectCodeUPCEAN_S4.woff and ConnectCodeUPCEAN_S4.eot
- Font Name : CCodeUPCEAN_S5
Filenames : ConnectCodeUPCEAN_S5.otf, ConnectCodeUPCEAN_S5.woff and ConnectCodeUPCEAN_S5.eot
- Font Name : CCodeUPCEAN_S6
Filenames : ConnectCodeUPCEAN_S6.otf, ConnectCodeUPCEAN_S6.woff and ConnectCodeUPCEAN_S6.eot
- Font Name : CCodeUPCEAN_S7
Filenames : ConnectCodeUPCEAN_S7.otf, ConnectCodeUPCEAN_S7.woff and ConnectCodeUPCEAN_S7.eot
Fonts with embedded Human Readable Text :
- Font Name : CCodeUPCEAN_HRS1
Filenames : ConnectCodeUPCEAN_HRS1.otf, ConnectCodeUPCEAN_HRS1.woff and ConnectCodeUPCEAN_HRS1.eot
- Font Name : CCodeUPCEAN_HRS2
Filenames : ConnectCodeUPCEAN_HRS2.otf, ConnectCodeUPCEAN_HRS2.woff and ConnectCodeUPCEAN_HRS2.eot
- Font Name : CCodeUPCEAN_HRS3
Filenames : ConnectCodeUPCEAN_HRS3.otf, ConnectCodeUPCEAN_HRS3.woff and ConnectCodeUPCEAN_HRS3.eot
- Font Name : CCodeUPCEAN_HRS4
Filenames : ConnectCodeUPCEAN_HRS4.otf, ConnectCodeUPCEAN_HRS4.woff and ConnectCodeUPCEAN_HRS4.eot
- Font Name : CCodeUPCEAN_HRS5
Filenames : ConnectCodeUPCEAN_HRS5.otf, ConnectCodeUPCEAN_HRS5.woff and ConnectCodeUPCEAN_HRS5.eot
- Font Name : CCodeUPCEAN_HRS6
Filenames : ConnectCodeUPCEAN_HRS6.otf, ConnectCodeUPCEAN_HRS6.woff and ConnectCodeUPCEAN_HRS6.eot
- Font Name : CCodeUPCEAN_HRS7
Filenames : ConnectCodeUPCEAN_HRS7.otf, ConnectCodeUPCEAN_HRS7.woff and ConnectCodeUPCEAN_HRS7.eot
Fonts with Human Text at the Top of the barcode (typically only used by EXT2/EXT5. For this barcode, only 3 font sizes are supported) :
- Font Name : CCodeUPCEAN_HRTS1
Filenames : ConnectCodeUPCEAN_HRTS1.otf, ConnectCodeUPCEAN_HRTS1.woff and ConnectCodeUPCEAN_HRTS1.eot
- Font Name : CCodeUPCEAN_HRTS2
Filenames : ConnectCodeUPCEAN_HRTS2.otf, ConnectCodeUPCEAN_HRTS2.woff and ConnectCodeUPCEAN_HRTS2.eot
- Font Name : CCodeUPCEAN_HRTS3
Filenames : ConnectCodeUPCEAN_HRTS3.otf, ConnectCodeUPCEAN_HRTS3.woff and ConnectCodeUPCEAN_HRTS3.eot
Javascript Function :
- ConnectCode_Encode_EXT5(data)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_EXT5({data:12345678});
data is optional. The text selected by jQuery will be used by default.
The Embedded Human Readable Text option is not required as in other UPCEAN barcodes. Simply change the font to one with the Human Readable Text.
- jQuery('.barcodetextselector').Encode_EXT5({humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.
GS1 Databar 14 Barcode
Fonts with varying height supported :
- Font Name : CCodeGS1D_S1
Filenames : ConnectCodeGS1D_S1.otf, ConnectCodeGS1D_S1.woff and ConnectCodeGS1D_S1.eot
- Font Name : CCodeGS1D_S2
Filenames : ConnectCodeGS1D_S2.otf, ConnectCodeGS1D_S2.woff and ConnectCodeGS1D_S2.eot
- Font Name : CCodeGS1D_S3
Filenames : ConnectCodeGS1D_S3.otf, ConnectCodeGS1D_S3.woff and ConnectCodeGS1D_S3.eot
- Font Name : CCodeGS1D_S4
Filenames : ConnectCodeGS1D_S4.otf, ConnectCodeGS1D_S4.woff and ConnectCodeGS1D_S4.eot
- Font Name : CCodeGS1D_S5
Filenames : ConnectCodeGS1D_S5.otf, ConnectCodeGS1D_S5.woff and ConnectCodeGS1D_S5.eot
- Font Name : CCodeGS1D_S6
Filenames : ConnectCodeGS1D_S6.otf, ConnectCodeGS1D_S6.woff and ConnectCodeGS1D_S6.eot
- Font Name : CCodeGS1D_S7
Filenames : ConnectCodeGS1D_S7.otf, ConnectCodeGS1D_S7.woff and ConnectCodeGS1D_S7.eot
Javascript Function :
- ConnectCode_Encode_GS1Databar14(data,linkage)
After calling the encode function above, the Get_HRText() function can be called to retrieve the Human Readable Text of a barcode.
jQuery Function :
- jQuery('.classselector').Encode_GS1Databar14({data:12345678, linkage:0});
data is optional. The text selected by jQuery will be used by default.
- jQuery('.barcodetextselector').Encode_GS1Databar14({linkage:0, humanReadableTextOutput: 1});
This will return the Human Readable Text of the barcode.