To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorCODE 128 barcode
Code 128 is a very high-density barcode symbology.
It is used for alphanumeric or numeric-only barcodes.
It can encode all 128 characters of ASCII and, by
use of an extension character (FNC4), the Latin-1
characters defined in ISO/IEC 8859-1
Code 128 is used on patient labels and tube labels
within ECMC
- Scenarios
-
- Code 128 on EPL
-
- Given
-
a DSL with:
ZebraPrinterDocument.new do language :epl2 barcode :code_128, 'hello', :at => [1,2] end
- When
- I execute the DSL
- Then
- the output should include "B1,2,0,1,2,2,50,B,"hello""
- Code 128 on ZPL
-
- Given
-
a DSL with:
ZebraPrinterDocument.new do language :zpl2 barcode :code_128, 'hello', :at => [1,2] end
- When
- I execute the DSL
- Then
- the output should include "^BCN,30,Y,N,N"
- And
- the output should include "^FDhello^FS"
Last published over 7 years ago by Paul Mitchell.