IT/팁 & 에러노트
폰트를 이용한 바코드 생성
910F
2016. 10. 6. 13:43
728x90
폰트만으로 바코드를 생성할 수 있습니다.
초간단.
http://www.barcodesinc.com/free-barcode-font/
[ download : free3of9.zip]
웹에서 생성 시
( 폰트로 처리되는것이기 때문에 해당 PC에 폰트설치가 안되어 있는 경우 처리 안됨.
웹폰트로 해결 가능.
// 첨부파일에 eot , woff로 변환된 파일도 넣었습니다. )
<% Dim code_name If Trim(Request("code_name")) = "" Then code_name = "noname" Else code_name = Ucase(Trim(Request("code_name"))) End If %> <form action="#" method="get"> <table border=0 cellpadding=2 cellspacing=2 width=500 style="text-align:center;bdcolor:white;"> <tr bgcolor="white"> <td height="400" align="center"> <input style="text-align:center;width:200px;border:1px solid red;" type="text" name="code_name" value="<%=code_name%>"> <input type="submit" /> <div style="font-family:'Free 3 of 9 extended';font-size:30pt;padding-top:20px;">*<%=code_name%>*</div> </td> </tr> </table> </form>
워드패드에서 생성 시 홈페이지에도 나와 있듯이 *내용* "*" 를 앞뒤로 넣어주어야 합니다.
728x90