Questions tagged [gs1-128]

Questions related to GS1-128 barcode symbols (formerly EAN/UCC-128), an application standard implementation of Code 128, that are a carrier for data that conforms to GS1 Application Identifier syntax.

63 questions
1
vote
0 answers

How to create a GS1-128 barcode using ZPL

Please help with the following situation: Using ZPL script, I have to generate a barcode with GS1-128 (formally known as Code 128). I have the following specs: The ideal way to label products is with complex barcodes with delimiters (cf. the GS1…
1
vote
2 answers

ZPL Script for barcode GS1-128 issue

Using ZPL script, I have to generate a barcode with GS1-128 (formally known as Code 128, UCC/EAN 128). The problem is, it is generating barcode but a number is not correct from the middle of the…
Saboor
  • 21
  • 3
1
vote
1 answer

How to decode FNC1 codes in GS1-128 barcode in Flutter?

Summary of the problem I want to decode the FNC1 codes in GS1-128 barcode in flutter. We know the GS1-128 structure is the following: and GS1-128 uses application identifiers to describe information contained in a barcode, in above image we can see…
Julian Solarte
  • 555
  • 6
  • 29
1
vote
1 answer

Does Ionic 3 Barcode Scanning support GS1-128 barcode format?

I am currently making an application, with the use of Ionic 3, that can scan GS1-128 barcode format. I tested several barcodes, it worked. But, in GS1-128 format, parenthesis are removed. I hope there's someone to help. Thank you!
Ace
  • 71
  • 1
  • 5
1
vote
1 answer

ASP.NET Pass non-printable barcode character from a web.form to server side

I've been developing a web app that accepts input from a barcode scanner. I need to pass scanned barcodes (GS1-128) from client-side to server-side. By standard, GS1-128 may contain one or several group separator characters (characters with…
1
vote
1 answer

Alphanumerics with UCC128 barcode

I have the following ZPL code ^FO25,215^A0,N,25,25^BCN,100,N,N,N,U^FN21^FS The customer wants this barcode as a UCC 128 barcode, but their data is alphanumeric. Research I looked through the ZPL docs which mentions: option U for the mode defaults…
FusRoDa
  • 13
  • 3
1
vote
1 answer

Unable to read FNC1 character at the first position of a GS1 128 Barcode using Zbar library?

I have developed an application for barcode decoding in android using Google vision Library for GS1 data matrix and Zbar Library for GS1 128 barcode Unable to read FNC1 character at the first position of a GS1 128 Barcode using Zbar library. The…
Akash Dubey
  • 1,508
  • 17
  • 34
1
vote
1 answer

GS1 128 Barcode Decoder (AI) in PHP or Jquery

I'm working on a project that requires read barcodes like GS1 128, and I want to separate them into the application identifiers (AI). I'm using a library called Bark.js. It works fine with some barcodes, using AI like 01, 02, 15, 17, 10; but now I'm…
bey23
  • 313
  • 4
  • 16
1
vote
0 answers

How to generate (paint) EAN-128 barcode with ZXing in Android

I'm using ZXing to paint EAN-13 barcodes in my app and now i am requested to paint EAN-128 also. I've read that EAN-13, also called GS1-128 is a descendant from Code-128, which the ZXing library supports. The question is, if i already have the…
Hugo
  • 1,662
  • 18
  • 35
1
vote
0 answers

SYMBOL. ls2208-sr20007r-ur. barcode reader. EAN 128. parenthesis character not read

I am trying to use ls2208-sr20007r-ur barcode reader in my project. And my barcodes will be in EAN-128 format. I connect the barcode reader to my comp by USB port, so it becomes a Keyboard emulator. The problem is, when I scan EAN-128 barcode, the…
1
vote
1 answer

Flex Barcode Component for Barcode EAN 128 with Application Identifiers

I am looking for a flex component to generate a barcode similar to the one below. See Image http://img.skitch.com/20100716-g4456feuw8af1b1q6i1p2kj3tt.jpg I have found a similar plugin, at flex2.bsi-scs.com/BarCodeDemo/index.php. But could not…
David
  • 11
  • 2
1
vote
2 answers

there.are.illegal.characters.for.barcode.128 exception when using CODE128_UCC in itextsharp 5.5.4 .net

When attempting to create an GS1-128 barcode I encounter the following exception: there.are.illegal.characters.for.barcode.128.in.1 iTextSharp.text.pdf.Barcode barcode = null; barcode = new Barcode128(); barcode.CodeType =…
AbstractLabs
  • 151
  • 1
  • 4
1
vote
0 answers

How can I generate (encode) GS1-128 or EAN128 barcode?

I've been working with the netbarcodewriter library from https://github.com/simongh/barcodes and have been able to successfully generate code 128 barcodes. It fails when I try to encode (95)00209(96)0004471(97)0065(98)1931 with the EAN128 using the…
reckface
  • 5,678
  • 4
  • 36
  • 62
1
vote
2 answers

Decoding GS1-128 UCC/EAN128 with Motorola EMDK 2.6

I want to decode a GS1-128 (form. ECC/EAN128) barcode with the Motorola emdk Version 2.6. I use the ES400 as Test-Device. I only get the data in native text format. For example (01)25416898545645(17)080600(30)0306180021 returns…
user1495710
  • 11
  • 1
  • 2
1
vote
1 answer

How to generate a UCC/EAN 128 barcode with 128Code font?

I need to be able to generate UCC/EAN 128 barcodes with our ActionScript-based application. A already have the Code 128 font integrated, but need to create UCC/EAN 128 barcodes. Browsing information from Google, I found that the UCC/EAN 128 is…