amigos estoy realizando un sistema web y lo ultimo que necesito es que se muestre un codigo de barras... es simple solo es un texto que debe mostrarse con una fuente (ttf) de la que dispongo.... el problema es que no me ha funcioado...
he probado este codigo de los FAQ
Código PHP:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<style type="text/css" media="screen">
h1 {
font-family:'Code 128', georgia, serif;
}
/* TODOS LOS NAVEGADORES MODERNOS*/
@font-face{
font-family:'stencil';
src: url('code128.ttf') format('truetype') /*u ('opentype') si lo fuera*/;
}
</style>
/* PARA INTERNET EXPLORER*/
<!--[if IE]>
<style type="text/css" media="screen">
@font-face{
font-family:'stencil';
src: url(code128.ttf);
}
</style>
<![endif]-->
</head>
<body>
<h1>
123456789
</h1>
</body>
</html>
¿que hago mal....?
¿hay alguna otra forma de solucionar esto?
tambien e probado haciendolo con un sistema que te reemplazaba el texo por un flash y aunque se veia bien no me sirve pues debe imprimirse....
¿Sugerencias,? es lo ultimo que me va faltando.....
gracias----->