Added rounding code to getRow() as well and updated the tests accordingly.
[zxing.git] / javase / src / com / google / zxing / client / j2se / BufferedImageLuminanceSource.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.client.j2se;
18
19 import com.google.zxing.LuminanceSource;
20
21 import java.awt.Graphics2D;
22 import java.awt.image.BufferedImage;
23 import java.awt.geom.AffineTransform;
24
25 /**
26  * This LuminanceSource implementation is meant for J2SE clients and our blackbox unit tests.
27  *
28  * @author dswitkin@google.com (Daniel Switkin)
29  * @author Sean Owen
30  */
31 public final class BufferedImageLuminanceSource extends LuminanceSource {
32
33   private final BufferedImage image;
34   private final int left;
35   private final int top;
36   private int[] rgbData;
37
38   public BufferedImageLuminanceSource(BufferedImage image) {
39     this(image, 0, 0, image.getWidth(), image.getHeight());
40   }
41
42   public BufferedImageLuminanceSource(BufferedImage image, int left, int top, int width,
43       int height) {
44     super(width, height);
45
46     int sourceWidth = image.getWidth();
47     int sourceHeight = image.getHeight();
48     if (left + width > sourceWidth || top + height > sourceHeight) {
49       throw new IllegalArgumentException("Crop rectangle does not fit within image data.");
50     }
51
52     this.image = image;
53     this.left = left;
54     this.top = top;
55   }
56
57   // These methods use an integer calculation for luminance derived from:
58   // <code>Y = 0.299R + 0.587G + 0.114B</code>
59   @Override
60   public byte[] getRow(int y, byte[] row) {
61     if (y < 0 || y >= getHeight()) {
62       throw new IllegalArgumentException("Requested row is outside the image: " + y);
63     }
64     int width = getWidth();
65     if (row == null || row.length < width) {
66       row = new byte[width];
67     }
68
69     if (rgbData == null || rgbData.length < width) {
70       rgbData = new int[width];
71     }
72     image.getRGB(left, top + y, width, 1, rgbData, 0, width);
73     for (int x = 0; x < width; x++) {
74       int pixel = rgbData[x];
75       int luminance = (306 * ((pixel >> 16) & 0xFF) +
76           601 * ((pixel >> 8) & 0xFF) +
77           117 * (pixel & 0xFF) +
78           (0x200)) >> 10; // 0x200 = 1<<9, half an lsb of the result to force rounding
79       row[x] = (byte) luminance;
80     }
81     return row;
82   }
83
84   @Override
85   public byte[] getMatrix() {
86     int width = getWidth();
87     int height = getHeight();
88     int area = width * height;
89     byte[] matrix = new byte[area];
90
91     int[] rgb = new int[area];
92     image.getRGB(left, top, width, height, rgb, 0, width);
93     for (int y = 0; y < height; y++) {
94       int offset = y * width;
95       for (int x = 0; x < width; x++) {
96         int pixel = rgb[offset + x];
97         int luminance = (306 * ((pixel >> 16) & 0xFF) +
98             601 * ((pixel >> 8) & 0xFF) +
99             117 * (pixel & 0xFF) +
100             (0x200)) >> 10; // 0x200 = 1<<9, half an lsb of the result to force rounding
101         matrix[offset + x] = (byte) luminance;
102       }
103     }
104     return matrix;
105   }
106
107   @Override
108   public boolean isCropSupported() {
109     return true;
110   }
111
112   @Override
113   public LuminanceSource crop(int left, int top, int width, int height) {
114     return new BufferedImageLuminanceSource(image, this.left + left, this.top + top, width, height);
115   }
116
117   // Can't run AffineTransforms on images of unknown format.
118   @Override
119   public boolean isRotateSupported() {
120     return image.getType() != BufferedImage.TYPE_CUSTOM;
121   }
122
123   @Override
124   public LuminanceSource rotateCounterClockwise() {
125     if (!isRotateSupported()) {
126       throw new IllegalStateException("Rotate not supported");
127     }
128     int sourceWidth = image.getWidth();
129     int sourceHeight = image.getHeight();
130
131     // Rotate 90 degrees counterclockwise.
132     AffineTransform transform = new AffineTransform(0.0, -1.0, 1.0, 0.0, 0.0, sourceWidth);
133
134     // Note width/height are flipped since we are rotating 90 degrees.
135     BufferedImage rotatedImage = new BufferedImage(sourceHeight, sourceWidth, image.getType());
136
137     // Draw the original image into rotated, via transformation
138     Graphics2D g = rotatedImage.createGraphics();
139     g.drawImage(image, transform, null);
140     g.dispose();
141
142     // Maintain the cropped region, but rotate it too.
143     int width = getWidth();
144     return new BufferedImageLuminanceSource(rotatedImage, top, sourceWidth - (left + width),
145         getHeight(), width);
146   }
147
148 }