Changed the Writer interface to provide contents as a String instead of a byte array.
[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 /**
25  * This is a factory class which finds the appropriate Writer subclass for the BarcodeFormat
26  * requested and encodes the barcode with the supplied contents.
27  *
28  * @author dswitkin@google.com (Daniel Switkin)
29  */
30 public final class MultiFormatWriter implements Writer {
31
32   public ByteMatrix encode(String contents, BarcodeFormat format, int width,
33       int height) throws WriterException {
34
35     return encode(contents, format, width, height, null);
36   }
37
38   public ByteMatrix encode(String contents, BarcodeFormat format, int width, int height,
39       Hashtable hints) throws WriterException {
40
41     if (format == BarcodeFormat.QR_CODE) {
42       return new QRCodeWriter().encode(contents, format, width, height, hints);
43     } else {
44       throw new IllegalArgumentException("No encoder available for format " + format);
45     }
46   }
47
48 }