0aae4a2964d50b975992693f699bba67b48e5401
[zxing.git] / core / src / com / google / zxing / oned / EAN8Writer.java
1 /*
2  * Copyright 2009 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.oned;
18
19 import java.util.Hashtable;
20
21 import com.google.zxing.BarcodeFormat;
22 import com.google.zxing.WriterException;
23 import com.google.zxing.common.ByteMatrix;
24
25
26 /**
27  * This object renders an EAN8 code as a ByteMatrix 2D array of greyscale
28  * values.
29  * 
30  * @author aripollak@gmail.com (Ari Pollak)
31  */
32 public final class EAN8Writer extends AbstractUPCEANWriter {
33
34   private static final int codeWidth = 3 + // start guard
35       (7 * 4) + // left bars
36       5 + // middle guard
37       (7 * 4) + // right bars
38       3; // end guard
39
40   public ByteMatrix encode(String contents, BarcodeFormat format, int width, int height,
41       Hashtable hints) throws WriterException {
42     if (format != BarcodeFormat.EAN_8) {
43       throw new IllegalArgumentException("Can only encode EAN_8, but got "
44           + format);
45     }
46     
47     return super.encode(contents, format, width, height, hints);
48   }
49
50   /** @return a byte array of horizontal pixels (0 = white, 1 = black) */
51   public byte[] encode(String contents) {
52     if (contents.length() != 8) {
53       throw new IllegalArgumentException(
54           "Requested contents should be 8 digits long, but got " + contents.length());
55     }
56
57     byte[] result = new byte[codeWidth];
58     int pos = 0;
59
60     pos += appendPattern(result, pos, AbstractUPCEANReader.START_END_PATTERN, 1);
61
62     for (int i = 0; i <= 3; i++) {
63       int digit = Integer.parseInt(contents.substring(i, i + 1));
64       pos += appendPattern(result, pos, AbstractUPCEANReader.L_PATTERNS[digit], 0);
65     }
66
67     pos += appendPattern(result, pos, AbstractUPCEANReader.MIDDLE_PATTERN, 0);
68
69     for (int i = 4; i <= 7; i++) {
70       int digit = Integer.parseInt(contents.substring(i, i + 1));
71       pos += appendPattern(result, pos, AbstractUPCEANReader.L_PATTERNS[digit], 1);
72     }
73     pos += appendPattern(result, pos, AbstractUPCEANReader.START_END_PATTERN, 1);
74
75     return result;
76   }
77
78 }