gs1_barcode_parser

Creator: coderz1093

Last updated:

Add to Cart

Description:

gs1 barcode parser

gs1_barcode_parser #
GS1 Barcode parser
Example #
Parse code-128 with FNC1
final String barcode =
']C101040123456789011715012910ABC1233932971471131030005253922471142127649716';
final parser = GS1BarcodeParser.defaultParser();
final result = parser.parse(barcode);
print(result);
copied to clipboard
Result
code = GS1-128,
data = {
01 (GTIN): 04012345678901,
17 (USE BY OR EXPIRY): 2015-01-29 00:00:00.000,
10 (BATCH/LOT): ABC123,
3932 (PRICE): 47.11,
3103 (NET WEIGHT (kg)): 0.525,
3922 (PRICE): 47.11,
421 (SHIP TO POST): 49716,
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.