有关code 39 的相关知识

<!-- /* Font Definitions */ @font-face {font-family:宋体; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-alt:SimSun; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} @font-face {font-family:"/@宋体"; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; mso-pagination:widow-orphan; font-size:10.5pt; font-family:"Calibri","sans-serif"; mso-fareast-font-family:宋体; mso-bidi-font-family:宋体;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman"; mso-hansi-font-family:"Times New Roman"; mso-font-kerning:0pt;} /* Page Definitions */ @page {mso-page-border-surround-header:no; mso-page-border-surround-footer:no;} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt; mso-header-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;} div.Section1 {page:Section1;} -->

    条形码的编码规则不外乎是通过线条和线条间间隙的宽窄不同来表示二进制的1和0,只要我们了解了条形码的编码规则,完全可以用画图的方式在普通打印机上得到可以接受的效果。条形码种类有 CODE39 、标准 25 码、交叉 25 码、矩阵 25 码、库德巴码、 CODE128A 码、 CODE128B 码、 CODE128C 码下面我们就使用最普遍的 CODE39 码进行讨论。    

  

     CODE39 码的编码规则是:    

  

  1、    每五条线表示一个字符;    

  2、    粗线表示1,细线表示0;    

  3、    线条间的间隙宽的表示1,窄的表示0;    

  4、    五条线加上它们之间的四条间隙就是九位二进制编码,而且这九位中必定有三位是 1 ,所以称为 39 码;   

  5、    条形码的首尾各一个*标识开始和结束    

  

           strBarTable(0)   =   "001100100"       '   0   

     strBarTable(1)   =   "100010100"       '   1   

     strBarTable(2)   =   "010010100"       '   2   

     strBarTable(3)   =   "110000100"       '   3   

     strBarTable(4)   =   "001010100"       '   4   

     strBarTable(5)   =   "101000100"       '   5   

     strBarTable(6)   =   "011000100"       '   6   

     strBarTable(7)   =   "000110100"       '   7   

     strBarTable(8)   =   "100100100"       '   8   

     strBarTable(9)   =   "010100100"       '   9   

     strBarTable(10)   =   "100010010"    '   A   

     strBarTable(11)   =   "010010010"    '   B   

     strBarTable(12)   =   "110000010"    '   C   

     strBarTable(13)   =   "001010010"    '   D   

     strBarTable(14)   =   "101000010"    '   E   

     strBarTable(15)   =   "011000010"    '   F   

     strBarTable(16)   =   "000110010"    '   G   

     strBarTable(17)   =   "100100010"    '   H   

     strBarTable(18)   =   "010100010"    '   I   

     strBarTable(19)   =   "001100010"    '   J   

     strBarTable(20)   =   "100010001"    '   K   

     strBarTable(21)   =   "010010001"    '   L   

     strBarTable(22)   =   "110000001"    '   M   

     strBarTable(23)   =   "001010001"    '   N   

     strBarTable(24)   =   "101000001"    '   O     

     strBarTable(25)   =   "011000001"    '   P   

     strBarTable(26)   =   "000110001"    '   Q   

     strBarTable(27)   =   "100100001"    '   R   

     strBarTable(28)   =   "010100001"    '   S   

     strBarTable(29)   =   "001100001"    '   T   

     strBarTable(30)   =   "100011000"    '   U   

     strBarTable(31)   =   "010011000"    '   V   

     strBarTable(32)   =   "110001000"    '   W   

     strBarTable(33)   =   "001011000"    '   X   

     strBarTable(34)   =   "101001000"    '   Y   

     strBarTable(35)   =   "011001000"    '   Z   

     strBarTable(36)   =   "000111000"    '   -   

     strBarTable(37)   =   "100101000"    '   %   

     strBarTable(38)   =   "010101000"    '   $   

     strBarTable(39)   =   "001101000"    '   *

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值