There is a service hosted on for generating barcodes metafloor.com using bwip.js
I want to generate a barcode for following data (GS character is represent by {GS}
).
(01)10875066000333(10)1212{GS}(17)121212(30)8{GS}
According the documentation I'm able to generate a barcode for data without GS character
https://bwipjs-api.metafloor.com/?bcid=gs1-128&text=(01)10875066000333(10)1212(17)121212(30)8
But the scanner require GS characters.
The documentation is clear
- Special characters must be encoded in format
^NNN
- Parse option has to be true, by using
parsefnc
parameter - The parameter has to be URL-encoded.
So for my string it's:
https://bwipjs-api.metafloor.com/?bcid=gs1-128&text=(01)10875066000333(10)1212%5E029(17)121212(30)8%5E029&parsefnc
But this gives me Error: bwipp.GS1badCSET82character: AI 10: Invalid CSET 82 character
.
I also tried
- Send GS char directly as
%1D
- Send GS char as
%5EGS
- Send GS char as
^029
- Send GS char directly
- Set
parsefnc=true
- Combination of all above
But still getting the same error.
Is there something I'm doing wrong or is the problem on the other side?