Problema de código de barras al imprimir en formato HTML
Frecuentes
Visto 250 veces
0
We have an online transport application which prints tickets in PDF format which includes barcode for scanning while travelling.Currently we have to change printing format from PDF to HTML.While doing that Barcode is not getting printed.So,is it possible to have Barcode printed in HTML format?More Info related to this would be grateful...
2 Respuestas
1
You can create an HTML representation of your barcode, just remember: The way a page is showed depends on the styles you apply to it, and the way the client interprets it (That's wy I.E. is a pain in the...).
A barcode has dimension restrictions to be interpreted. That would make your styling a mess.
Besides, when printing a webpage, the client (Internet Explorer, Mozilla, Chrome, Safari etc.) could have been configured by the user to save ink or improve legibility, so the barcode might not get printed the best.
estoy con t3hn00b. The easiest would be to generate the barcode in server as a jpg or png that is inserted in your html. That way you keep the dimensions and your barcode is less prone to errors when printing.
contestado el 23 de mayo de 17 a las 13:05
a list with all items float:left and with a specific witdh and use the background color to make it a barcode :) - EaterOfCode
I think you'd struggle to get this spot on using css. Different browsers and resolutions will play a nightmare with your spacing. - Liam
ok,i would check that..changing css.. - Amol Kolekar