milon / barcode

Laravel Barcode Generator
Other
1.32k stars 318 forks source link

Extra number in results #112

Closed robertnicjoo closed 4 years ago

robertnicjoo commented 4 years ago

I have barcode data in database like qewf and it print in my blade like:

Screenshot(3)

So far everything looks good,

But when i try to read this barcode I get qewf1 where this 1 came from?

Screenshot(4)

code

<img src="data:image/png;base64,{!! \DNS1D::getBarcodePNG($product->barcode, 'C39+',1,50,array(1,1,1),true) !!}" alt="barcode" />

Any idea?

ysfkaya commented 4 years ago

I have that same problem. It put the letter "H" at the end

ysfkaya commented 4 years ago

I have solved the problem. I was changed barcode type to C128 then it worked.

robertnicjoo commented 4 years ago

I have solved the problem. I was changed barcode type to C128 then it worked.

Thank you that worked