Created the base Writer object for all barcode encoding, then wrote a QR Code version...
[zxing.git] / core / src / com / google / zxing / MultiFormatWriter.java
1 /*
2  * Copyright 2008 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;
18
19 import com.google.zxing.common.ByteMatrix;
20 import com.google.zxing.qrcode.QRCodeWriter;
21
22 import java.util.Hashtable;
23
24 public final class MultiFormatWriter implements Writer {
25
26   public ByteMatrix encode(byte[] contents, BarcodeFormat format, int width,
27       int height) throws Exception {
28
29     return encode(contents, format, width, height, null);
30   }
31
32   public ByteMatrix encode(byte[] contents, BarcodeFormat format, int width, int height,
33       Hashtable hints) throws Exception {
34
35     if (format == BarcodeFormat.QR_CODE) {
36       return new QRCodeWriter().encode(contents, format, width, height, hints);
37     } else {
38       throw new IllegalArgumentException("No encoder available for format " + format);
39     }
40   }
41
42 }