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
14
votes
4 answers

EAN128 or GS1-128 decode c#

Here is the sample of EAN128 or new name GS1-128 barcode 01088888931021461712031510W1040190 I want to decode it to ais (01)08888893102146 (17)120315 (10)W1040190 But the barcode can be changed like this 1712031510W1040190 (17)120315 …
Murat Vezir
  • 216
  • 1
  • 3
  • 12
5
votes
2 answers

Decoding EAN-128 (and other GS1 barcodes)

There are lots of components out there creating/parsing barcode images but i could not manage to find a library which parses a EAN-128 barcode-string and gives me simply a java-pojo object from which I can get EAN-128 groups if they were included in…
archangle
  • 217
  • 4
  • 12
5
votes
0 answers

Scanning GS1/EAN/UCC-128 barcodes in iOS

So I'm currently working on a project that requires scanning GS1-128 barcodes. So far, for other barcode types, we've been using AVFoundation's scanning without a problem. AVFoundation can read Code-128 (which GS1-128 is encoded in); where we're…
Saelyria
  • 142
  • 7
5
votes
1 answer

GS1-128 barcode parsing

Scanner Model :- Motorola- DS4208-HC We need to parse the GS1-128 barcode. We know they are going to use GTIN(01), lot number(10), Expiration date(17), serial number (21). Input String:- (01)07612345678900(17)100503(10)AC3453G3(21)455777 The problem…
4
votes
1 answer

Scan GS1-128 with Zxing

I want to scan GS1-128 barcode (like picture attached) with Zxing (Android), but I can't. I'm using scanning by IntentIntegrator. Could anyone help me? Else another barcode scanner framework for Android/iOS? Thanks, best regards GS1-128 barcode…
icerra
  • 59
  • 6
4
votes
2 answers

Is a checksum required in the Code128 barcode specification?

Introduction Step 1 I tried to read the barcode (see image below) using a mobile barcode reader and online tools and got it: data - 30925018, visualization algorithm - Code128C Step 2 Then I tried to generate a barcode from given data and got these…
Roman Svyatnenko
  • 699
  • 12
  • 27
4
votes
1 answer

How to properly generate a GS1-128 (formerly EAN-128) barcode in TCPDF

We are trying to generate correct EAN-128 codes for product labels, with TCPDF library, but our client says that the barcode scanner doesn't read the generated barcode. The original(old) barcode and string: The code string is: $codeString =…
user1398498
  • 377
  • 3
  • 11
4
votes
2 answers

Generating a GS1-128 (formerly EAN-128) barcode using ZXing

I'm using the ZXing API in my application and have just discovered that it doesn't appear to support the EAN-128 barcode format. It supports Code 128 but there are subtle differences in the barcode image between EAN-128 and Code 128. Does anyone…
GordonW
  • 1,120
  • 2
  • 16
  • 36
4
votes
2 answers

ZXing Barcode Scanner Intent: set DecodeHintType.ASSUME_GS1

In my app I want to scan a GS1-128 barcode, and need the FNC1 characters passed from the ZXing barcode scanner. Right now I just receive the plain text without the FNC1 characters. Is there a way to pass the DecodeHintType.ASSUME_GS1 via Intent to…
Andreas H.
  • 161
  • 1
  • 9
4
votes
3 answers

GS1-128 and RegEx

I'm busy with GS1-128 and want to match scanned barcodes using RegEx. I currently have the following expression: ^(01)(12345678)(\d{5})\d(11|17)(\d{2}[0-1]\d[0-3]\d)(10|21)(\d{1,20})(30)(\d{1,20}) This succesfully matches the barcode…
user2244255
3
votes
2 answers

Where can I find a font to generate EAN 128 bar-codes?

I'm building a custom shipping solution using ASP.NET and C# and need to generate bar-codes in EAN 128 format. I was wondering if anybody knew where to find a compatible EAN Code 128 bar-code font? Any help would be greatly appreciated.
Carl Weis
  • 6,794
  • 15
  • 63
  • 86
3
votes
0 answers

How to check a Code 128 bar code is EAN 128 or not

How can I check weather a Code 128 bar-code is "EAN 128" or not. I am creating an application that uses both Code 128 and EAN 128 bar-code. While scanning a "EAN128" bar code the Android Vision API is returning the type as Code 128. From google I…
Stephan Ronald
  • 1,395
  • 2
  • 14
  • 39
3
votes
1 answer

EAN-128/GS1-128 barcode conflict

I am trying to generate EAN-128 (GS1-128) barcode labels to label a product. I have found some online barcode generators that allow to do this task. However, I am experiencing some conflicts between many web pages. I mean: for the same code data,…
2
votes
1 answer

Is there any database / or webservice or link where we can search for GS1 - 128 codes and find product information from different stores?

I am in search of some search engines or websites or Stores where i can search products using GS1 codes in java. Carrefour in uae uses GS1 data barcodes. I would like to search products using GS1 -128 barcode values using java. Is it possible?…
App Work
  • 21,899
  • 5
  • 25
  • 38
2
votes
0 answers

React parse GS1 barcode from camera

I am making a web app and I am using a scanner and camera. I implemented a GS1-parser and that one is working fine (and the scanning with a hardware scan). My problem is the camera scan. That one does not seem to scan the Group Separator character…
Takkie253
  • 156
  • 8
1
2 3 4 5