Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/08/2015, 10:38
Avatar de chronos682
chronos682
 
Fecha de Ingreso: febrero-2004
Ubicación: Tunja - Boyacá - Colombia
Mensajes: 627
Antigüedad: 20 años, 9 meses
Puntos: 69
Respuesta: Codigo de barras

Yo prefiero usar el tipo de letra 3 of 9 barcode, es más fácil. Aquí te dejo el código que yo uso:

Código PHP:
Ver original
  1. <html>
  2.     <head>
  3.         <style>
  4.             @font-face {
  5.                 font-family: "Barcode";
  6.                 font-style: normal;
  7.                 font-weight: normal;
  8.                 src: local("?"), url("/includes/3of9.woff") format("woff"), url("/includes/3of9.ttf") format("truetype");
  9.             }
  10.            
  11.             .barcode {
  12.                 font-family: "Barcode";
  13.                 font-size: 72px;
  14.                 text-align: center;
  15.             }
  16.         </style>
  17.         <script>
  18.             function Cambiar (texto)
  19.             {
  20.                 if (texto != "")
  21.                 {
  22.                     document.getElementById("barcode").innerHTML = "*"+texto+"*";
  23.                     document.getElementById("valor").innerHTML = texto;
  24.                 }
  25.                 else
  26.                 {
  27.                     alert ("Debe ingresar un texto");
  28.                 }  
  29.             }
  30.         </script>
  31.     </head>
  32.     <body>
  33.         <div style="text-align: center;">Texto: <input type="text" name="texto" id="texto" />&nbsp;&nbsp;<input type="button" name="cambiar" onclick="Cambiar(texto.value)" value="Cambiar" /></div>
  34.         <br><br>
  35.         <div class="barcode" id="barcode"></div>
  36.         <br><br><div id="valor" style="text-align: center;"></div><br><br><br><br>
  37.     </body>
  38. </html>

Debes tener los archivos de fuente ttf y woff en algun sitio de tu web. Si quieres me das un correo electrónico y te envío los archivos o si no los puedes encontrar por Google.

Aquí te dejo una página de muestra para que veas como queda y veas que es mucho más fácil.

Código de barras
__________________
Si te gustó la respuesta dale +1

HERNÁN G. SIABATO M.
[email protected]