Java生成条形码code128

Java生成条形码code128

版权声明:原创文章欢迎转载,转载请注明出处 https://blog.csdn.net/w605283073/article/details/81637674

生成code 128条形码工具类

maven依赖

 
  1. net.sf.barcode4j

  2. barcode4j

  3. 2.1

gradle依赖

compile("net.sf.barcode4j:barcode4j:2.1")

工具代码:

 
  1.  
  2. import org.apache.commons.lang.ObjectUtils;

  3. import org.krysalis.barcode4j.HumanReadablePlacement;

  4. import org.krysalis.barcode4j.impl.code128.Code128Bean;

  5. import org.krysalis.barcode4j.output.bitmap.BitmapCanvasProvider;

  6.  
  7. import java.awt.image.BufferedImage;

  8. import java.io.ByteArrayOutputStream;

  9. import java.io.IOException;

  10.  
  11. /**

  12. * 条形码工具类

  13. *

  14. * @author 明明如月

  15. * @date 2018/08/13

  16. */

  17. public class BarCodeUtils {

  18.  
  19.  
  20. /**

  21. * 生成code128条形码

  22. *

  23. * @param height 条形码的高度

  24. * @param width 条形码的宽度

  25. * @param message 要生成的文本

  26. * @param withQuietZone 是否两边留白

  27. * @param hideText 隐藏可读文本

  28. * @return 图片对应的字节码

  29. */

  30. public static byte[] generateBarCode128(String message, Double height, Double width, boolean withQuietZone, boolean hideText) {

  31. Code128Bean bean = new Code128Bean();

  32. // 分辨率

  33. int dpi = 512;

  34. // 设置两侧是否留白

  35. bean.doQuietZone(withQuietZone);

  36.  
  37. // 设置条形码高度和宽度

  38. bean.setBarHeight((double) ObjectUtils.defaultIfNull(height, 9.0D));

  39. if (width != null) {

  40. bean.setModuleWidth(width);

  41. }

  42. // 设置文本位置(包括是否显示)

  43. if (hideText) {

  44. bean.setMsgPosition(HumanReadablePlacement.HRP_NONE);

  45. }

  46. // 设置图片类型

  47. String format = "image/png";

  48.  
  49. ByteArrayOutputStream ous = new ByteArrayOutputStream();

  50. BitmapCanvasProvider canvas = new BitmapCanvasProvider(ous, format, dpi,

  51. BufferedImage.TYPE_BYTE_BINARY, false, 0);

  52.  
  53. // 生产条形码

  54. bean.generateBarcode(canvas, message);

  55. try {

  56. canvas.finish();

  57. } catch (IOException e) {

  58. //ByteArrayOutputStream won't happen

  59. }

  60.  
  61. return ous.toByteArray();

  62. }

  63.  
  64.  
  65. }

 

CODE 128 条码生成方法

2012年06月20日 18:17:05 dengchonglin 阅读数 4258

Code 128 Barcode Table

Value Code Set
A
Code Set
B
Code Set
C
Bar/Space Pattern
B S B S B S
0 SP SP 00 2 1 2 2 2 2
1 ! ! 01 2 2 2 1 2 2
2 " " 02 2 2 2 2 2 1
3 # # 03 1 2 1 2 2 3
4 $ $ 04 1 2 1 3 2 2
5 % % 05 1 3 1 2 2 2
6 & & 06 1 2 2 2 1 3
7 ' ' 07 1 2 2 3 1 2
8 ( ( 08 1 3 2 2 1 2
9 ) ) 09 2 2 1 2 1 3
10 * * 10 2 2 1 3 1 2
11 + + 11 2 3 1 2 1 2
12 , , 12 1 1 2 2 3 2
13 - - 13 1 2 2 1 3 2
14 . . 14 1 2 2 2 3 1
15 / / 15 1 1 3 2 2 2
16 0 0 16 1 2 3 1 2 2
17 1 1 17 1 2 3 2 2 1
18 2 2 18 2 2 3 2 1 1
19 3 3 19 2 2 1 1 3 2
20 4 4 20 2 2 1 2 3 1
21 5 5 21 2 1 3 2 1 2
22 6 6 22 2 2 3 1 1 2
23 7 7 23 3 1 2 1 3 1
24 8 8 24 3 1 1 2 2 2
25 9 9 25 3 2 1 1 2 2
26 : : 26 3 2 1 2 2 1
27 ; ; 27 3 1 2 2 1 2
28 < < 28 3 2 2 1 1 2
29 = = 29 3 2 2 2 1 1
30 > > 30 2 1 2 1 2 3
31 ? ? 31 2 1 2 3 2 1
32 @ @ 32 2 3 2 1 2 1
33 A A 33 1 1 1 3 2 3
34 B B 34 1 3 1 1 2 3
35 C C 35 1 3 1 3 2 1
36 D D 36 1 1 2 3 1 3
37 E E 37 1 3 2 1 1 3
38 F F 38 1 3 2 3 1 1
39 G G 39 2 1 1 3 1 3
40 H H 40 2 3 1 1 1 3
41 I I 41 2 3 1 3 1 1
42 J J 42 1 1 2 1 3 3
43 K K 43 1 1 2 3 3 1
44 L L 44 1 3 2 1 3 1
45 M M 45 1 1 3 1 2 3
46 N N 46 1 1 3 3 2 1
47 O O 47 1 3 3 1 2 1
48 P P 48 3 1 3 1 2 1
49 Q Q 49 2 1 1 3 3 1
50 R R 50 2 3 1 1 3 1
51 S S 51 2 1 3 1 1 3
52 T T 52 2 1 3 3 1 1
53 U U 53 2 1 3 1 3 1
54 V V 54 3 1 1 1 2 3
55 W W 55 3 1 1 3 2 1
56 X X 56 3 3 1 1 2 1
57 Y Y 57 3 1 2 1 1 3
58 Z Z 58 3 1 2 3 1 1
59 [ [ 59 3 3 2 1 1 1
60 \ \ 60 3 1 4 1 1 1
61 ] ] 61 2 2 1 4 1 1
62 ^ ^ 62 4 3 1 1 1 1
63 _ _ 63 1 1 1 2 2 4
64 NUL ` 64 1 1 1 4 2 2
65 SOH a 65 1 2 1 1 2 4
66 STX b 66 1 2 1 4 2 1
67 ETX c 67 1 4 1 1 2 2
68 EOT d 68 1 4 1 2 2 1
69 ENQ e 69 1 1 2 2 1 4
70 ACK f 70 1 1 2 4 1 2
71 BEL g 71 1 2 2 1 1 4
72 BS h 72 1 2 2 4 1 1
73 HT i 73 1 4 2 1 1 2
74 LF j 74 1 4 2 2 1 1
75 VT k 75 2 4 1 2 1 1
76 FF I 76 2 2 1 1 1 4
77 CR m 77 4 1 3 1 1 1
78 SO n 78 2 4 1 1 1 2
79 SI o 79 1 3 4 1 1 1
80 DLE p 80 1 1 1 2 4 2
81 DC1 q 81 1 2 1 1 4 2
82 DC2 r 82 1 2 1 2 4 1
83 DC3 s 83 1 1 4 2 1 2
84 DC4 t 84 1 2 4 1 1 2
85 NAK u 85 1 2 4 2 1 1
86 SYN v 86 4 1 1 2 1 2
87 ETB w 87 4 2 1 1 1 2
88 CAN x 88 4 2 1 2 1 1
89 EM y 89 2 1 2 1 4 1
90 SUB z 90 2 1 4 1 2 1
91 ESC { 91 4 1 2 1 2 1
92 FS | 92 1 1 1 1 4 3
93 GS } 93 1 1 1 3 4 1
94 RS ~ 94 1 3 1 1 4 1
95 US DEL 95 1 1 4 1 1 3
96 FNC 3 FNC 3 96 1 1 4 3 1 1
97 FNC 2 FNC 2 97 4 1 1 1 1 3
98 SHIFT SHIFT 98 4 1 1 3 1 1
99 CODE C CODE C 99 1 1 3 1 4 1
100 CODE B FNC 4 CODE B 1 1 4 1 3 1
101 FNC 4 CODE A CODE A 3 1 1 1 4 1
102 FNC 1 FNC 1 FNC 1 4 1 1 1 3 1
103 Start A Start A Start A 2 1 1 4 1 2
104 Start B Start B Start B 2 1 1 2 1 4
105 Start C Start C Start C 2 1 1 2 3 2
106 Stop Stop Stop 2 3 3 1 1 1 2

 

 

 

Example... To calculate the check digit for the barcode data string 'Code 128'

                              Value		     Total
			      =====                  =====
             Start Code B      104                    104
Position 1              C       35         1 x 35 =    35
Position 2              o       79         2 x 79 =   158
Position 3              d       68         3 x 68 =   204
Position 4              e       69         4 x 69 =   276
Position 5                       0         5 x  0 =     0
Position 6              1       17         6 x 17 =   102
Position 7              2       18         7 x 18 =   126
Position 8              8       24         8 x 24 =   192
                                                     =====
                                                     1197
                                                     =====
             1197/103 = 11 remainder 64
#endregion
即根据上表, 把没个字符的value值 乘上 字符在字符串中的位置(从1开始算)
把没个乘积加起来
因为CODESET B 为104(这是规定, 不要问我为什么)
所以, 还要加上 104 
最后, 除以103, 所得的余数就是 校验码 的value值, 然后在表中找到对应的字符
就可以了.

你可能感兴趣的:(java)