Questions tagged [code128]

A very high-density barcode semiotics used for alphanumeric or numeric-only barcodes.

Code 128 is a very high-density barcode semiotics. It is used for alphanumeric or numeric-only barcodes. It can encode all 128 characters of ASCII and, by use of an extension character (FNC4), the Latin-1 characters defined in ISO/IEC 8859-1

144 questions
0
votes
0 answers

What´s the best practice for barcode scanners under Windows Phone 8.1?

I am currently working on a barcode scanner for Code128 in my Windows Phone 8.1 App. I tried the Libary ZXing.Net 14.0.1.0, but my implementation only recognizes QR-Codes. Has somebody experience with my problem or knows the best practice for…
Alexander Pilz
  • 180
  • 1
  • 6
  • 16
0
votes
1 answer

Zxing NotFoundException with Barcode 128C

I try to use Zxing to decode 128C (Code set C) barcodes. I have success when I read other types like QR_CODE, UPC_A. These are barcodes that I trying to read: Is possible read 128C barcodes (Not CODE 128 pure) with Zxing ?
Bran Stark
  • 369
  • 3
  • 5
  • 15
0
votes
1 answer

Where can I download "Code128a" barcode font?

I take a google but it is not found Barcode font which it is Code128 type "A" format. My report need to show barcode which it was generate by string like these 00-KGH-15132-9000-Y3#" 0006000149000(00) ZP50000070# I has only code128…
Fame th
  • 1,018
  • 3
  • 17
  • 37
0
votes
2 answers

Creating a code128 barcode in PHP, using a font instead of rendering it as an image

I need to be able to convert any string into a code128 barcode that can be printed on a PDF. My idea was to embed a code128 font into the PDF and simply use that font to render the string that I need to show as a barcode, letter for letter. However,…
Louis B.
  • 2,348
  • 1
  • 29
  • 51
0
votes
1 answer

Code 128 (dhl) barcode and something missing in bars

Currently I'm creating dhl label using zpl command. I'm new to zpl commands. I have used BC - zpl command for code 128 barcode. This is my code: ^BCN,,N,N^FD>:2LDE44536+99000900153004^FS My problem: Above zpl code create barcodes, but when I check…
0
votes
1 answer

C128 Barcode script in php

I want to add code 128 auto barcode in codeigniter framework.I used http://davidscotttufts.com/2009/03/31/how-to-create-barcodes-in-php/ for this but it is generating code128B format.I have also used http://www.barcodephp.com/en/download but could…
sami sam
  • 19
  • 1
  • 7
0
votes
1 answer

Print a code128 barcode starting with the character 'C'

I've written label printing software (Windows, WPF, C#, .net 4.5) that happily prints barcodes with a Datamax H-Class printer, with one exception, when printing a barcode that starts with the character C When I attempt this, the barcode is…
Ted
  • 2,525
  • 2
  • 37
  • 54
0
votes
1 answer

zend framework 2 barcode code128 wrong validation

im trying to validate zend framework 2 barcodes but without success the validation always returns false $bc128 = new Code128(); $bc128->setText('TEST'); $valid = new \Zend\Validator\Barcode('code128'); if…
user3070083
  • 13
  • 1
  • 4
0
votes
0 answers

Bar code Printing in crystal report

i used code 128 to a generate bar code in crystal report , so when i print report in a A4 it detect well but when it print in sticker those are not detect by bar code detector but i checked using bar code printing software it works fine,help...
Chathuranga
  • 113
  • 1
  • 1
  • 10
0
votes
1 answer

How to define character sets to mix in Code 128 barcodes in Active Reports 2.0?

I am using ActiveReports 2.0 (Visual Basic 6.0). Is it possible to implement this functionality: Mix code sets in the 128 bar code. I need to encode a USPS tracking number. Following is an example of the same: CJ123456789US as Code 128B:…
0
votes
2 answers

Barcode integration for crystal report CRforVS_13_0_8 code39 or code128

I am trying to add Barcode in my crystal report.I need free service not paid.I have tried azalea bar code implementation. I have added azalea code 129 function in formula field and create a new formula field with name code128 and i placed in my…
Beginner
  • 92
  • 12
0
votes
4 answers

Way to compare two barcodes

I have two barcodes that I am working with. They are clearly different, but both scan as code 128. One is weird and one is normal. I have tried to reprint the data for the barcode in every way I can think of to I can see what subset (A, B or C)…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
0
votes
3 answers

android : BarcodeFormat.CODE_128 not displaying text

I made Barcode generator using ZXing Library but when barcode generate then it wont display text below barcode like so please suggest me some solution that how to generate BARCODE CODE_128 with TEXT Here it my code: try { …
Mansi
  • 1,939
  • 4
  • 22
  • 40
0
votes
2 answers

Why is my ASCII char to int conversion failing?

According to the chart here: http://www.idautomation.com/barcode-faq/code-128/ This character: Ë equates to the value 103. Yet this code: string barcode = textBoxRawCode128.Text.Trim(); . . . int runningTotal = ConvertToASCIIInt(barCode[0]); . .…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
2 answers

code128 barcode with tilde and asterisk

I am maintaining a printing program that now requires printing both a ~ and an * in a code128 barcode in zpl. Currently, I am using the code below that uses the ^FH to represent the tilde in hex: ^BCN,120,Y,N,N,N^FH^FDSPECIAL*MAKE_7e123456^FS The…
Danial Wayne
  • 348
  • 2
  • 15
1 2 3
9
10