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.
Questions tagged [gs1-128]
63 questions
0
votes
1 answer
C# create GS1-128 with Barcodelib
I use the NuGet package Barcodelib to create the barcode. I wanted to ask if any of you know how to create a GS1 code with this package.
Here is an excerpt of the script where the field txtBarcode.Text is converted
barCode.Alignment =…

user3545432
- 35
- 1
- 6
0
votes
0 answers
How to parse GS1-128 barcode in Entries Textbox Xamarin after scanning with Zxing
How can i identify values of GS1-128 Barcode after scanning result
private async void Button_Clicked_1(object sender, EventArgs e)
{
var scan = new ZXingScannerPage();
await Navigation.PushAsync(scan);
scan.OnScanResult +=…

ledio4
- 1
- 1
0
votes
1 answer
ZPL GS1-128 barcode issue with Field Number variable and three identifiers
I'm having issues when generating a barcode template to be saved on the printer to be frequently recalled.
It's a GS1-128 barcode with three identifiers: 91(company internal information, 10(Batch number) and 90(Information mutually agreed between…

KnockOutMan2015
- 29
- 5
0
votes
2 answers
How to get the raw data of a 1-D Barcode Image?
I am generating 1D Barcodes for USPS's EAN-128. But I don't have a scanner to check the end result.
Is there a free tool where I can use to check the Raw Data of the barcode? E.g. with the Start, FNC1, End, Mod103 checksum, etc.

James X.
- 83
- 1
- 9
0
votes
0 answers
ZPL: (00) in human readable but not in barcode
I am trying to create a GS1-128 barcode using ZPL. The barcode should have parenthesis automatically filled in at the start of the human readable before and after the first two digits.
In other words, I would like to send a SSCC-18 string like this:…

MtN
- 1
0
votes
1 answer
gs128 barcode not able to scan with Honeywell Dolphin CT60
I am using zpl language for generate gs128 barcode.
here is my zpl code.
^XA
^BY2,2.5,145^FO100,343^BC,,Y,N,N,D^FD(01)200588612>8(21)0000410549>8(10)ABC123^FS
^XZ
here is the barcode that generated through above zpl code.
enter image description…

Kushal Shah
- 3
- 3
0
votes
2 answers
Scanning Zebra Printed ZPL CODE-128 Barcode not returning single integer value for AI(37) but works if value is two integers?
I am trying to print a GS1-128 Barcode using ZPL and when I print this out for some reason everything prints fine except the number in the AI (37), I get 3715 (the 4 is missing), if I change the 4 to a two char integer value such as 04 or 14 I am…

Omeil
- 3
- 3
0
votes
0 answers
ean-128/gs1-128/sscc library support for generating barcodes in python
https://github.com/WhyNotHugo/python-barcode/ provides code128 support and other EAN, but gs1-128/ean-128 barcodes are different from code128, and I'm not sure how could I change the code128 format into supporting this variant, or if somehing…

Marie Jane
- 3
- 2
0
votes
0 answers
Unable to scan barcode using Google vision api
I have a functionality to scan QR as well as barcode (GS1 128) format in two seperate screens. I am able to scan QR code however my ReceiveDetections(Detections detections) not detecting Barcode. Strange, I trying setting…

Arti
- 2,993
- 11
- 68
- 121
0
votes
1 answer
ZPL 2 GS1 128 barcodes - When to use/switch subsets / maximum characters
I have several questions according to the ZPL and GS1 128 Barcodes.
I thought using subset B is always possible but sometimes it extends the
width of the barcode more then subset C (if there are only numeric values).
So I started switching between…
user8044970
0
votes
2 answers
GS1-128 ZPL generation with GTIN (01) with only 13 digits
I'd like to generate a GS1-128 barcode like this
(01)5410413901026(17)170612(10)LOT100
in ZPL code
^BY5,3,160^FT372,1506^BCB,,N,N,N
^FD>;>8015410413901026>817170612>810>6LOT100^FS
My problem is the 01 code is normally exactly 14…

Michael Piron
- 1
- 2
0
votes
0 answers
Reading a variable length data, on Motorola FR terminal
Question is regarding a reading a EAN 128 variable length bar code from RF terminal to a SAP web application.
I have a EAN 128 bar code in this format: (02)93858881222369(10)20212(37)104, when you scan the code with a scanner, the fr terminal read a…

Sale_082
- 13
- 6
0
votes
2 answers
Zxing: Differentiate 128 barcodes and GSI-128
Using C++ Builder 10.1 Berlin, I'm developping an app to scan barcodes on an Android device. To get a barcode I call the ZXing app by Intent. When I scan a GSI-128 barcode, the return type is CODE-128. In my app, the processing is different…

Dylan
- 107
- 8
0
votes
1 answer
Generate gs1 128 barcode in Ruby on Rails
I am using barby gem to generate gs1-128 barcode. I am able to save the barcode in a .png file. Below is the code i am using,
def pti_label_preview
gtin_no = params[:gtin_no]
barcode = Barby::GS1128.new(gtin_no,'C','12')
…

user2681579
- 1,413
- 2
- 23
- 50
0
votes
2 answers
Barcode EAN128 types
How to type the barcode on item arrival journal --> Line's EAN128/UCC128 field so that it give the item number and quantity?
For example:
Here if I type only 01M0001 and press enter it gives itemId "M0001" in Item number field and if I type only…

AYETY
- 698
- 4
- 23
- 38