Created the base Writer object for all barcode encoding, then wrote a QR Code version...
authordswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 17 Nov 2008 22:10:45 +0000 (22:10 +0000)
committerdswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 17 Nov 2008 22:10:45 +0000 (22:10 +0000)
commiteb2fb99b4e6ad935cbf277675226b820c0cd8f7d
tree8ac490c72c05fdeb0bdacf88f0c191d0b515f70d
parent91b25e76789a4ca9c631d5d786043f06d9e1bf04
Created the base Writer object for all barcode encoding, then wrote a QR Code version. A Writer encodes a series of raw bytes into a 2D greyscale bitmap, represented by a ByteArray. This seems like a better container than MonochromeBitmapSource, because we may want shades of grey when encoding future formats. The next step is to hook this up to the Android client.

git-svn-id: http://zxing.googlecode.com/svn/trunk@716 59b500cc-1b3d-0410-9834-0bbf25fbcc57
core/build.xml
core/src/com/google/zxing/MultiFormatWriter.java [new file with mode: 0644]
core/src/com/google/zxing/Writer.java [new file with mode: 0644]
core/src/com/google/zxing/common/ByteMatrix.java [new file with mode: 0644]
core/src/com/google/zxing/qrcode/QRCodeWriter.java [new file with mode: 0644]
core/src/com/google/zxing/qrcode/encoder/Encoder.java
core/src/com/google/zxing/qrcode/encoder/MaskUtil.java
core/src/com/google/zxing/qrcode/encoder/Matrix.java [deleted file]
core/src/com/google/zxing/qrcode/encoder/MatrixUtil.java
core/src/com/google/zxing/qrcode/encoder/QRCode.java
core/src/com/google/zxing/qrcode/encoder/Renderer.java [deleted file]