When create barcode from string :
`
def generate_barcode(self):
code = u"(01)01234567890128(15)057072"
GS1 = barcode.get_barcode_class('gs1_128')
fp = io.BytesIO()
gs1 = GS1(code, writer=ImageWriter()).write(fp)
a = base64.b64encode(fp.getbuffer())
`
The expected result its:
image
The result obtanides its:
image
When create barcode from string :
`
def generate_barcode(self):
code = u"(01)01234567890128(15)057072"
GS1 = barcode.get_barcode_class('gs1_128')
fp = io.BytesIO()
gs1 = GS1(code, writer=ImageWriter()).write(fp)
a = base64.b64encode(fp.getbuffer())
`
The expected result its:

The result obtanides its:
