Issue 494 round luminance values rather than truncate
[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)) >> 10;
78       row[x] = (byte) luminance;
79     }
80     return row;
81   }
82
83   @Override
84   public byte[] getMatrix() {
85     int width = getWidth();
86     int height = getHeight();
87     int area = width * height;
88     byte[] matrix = new byte[area];
89
90     int[] rgb = new int[area];
91     image.getRGB(left, top, width, height, rgb, 0, width);
92     for (int y = 0; y < height; y++) {
93       int offset = y * width;
94       for (int x = 0; x < width; x++) {
95         int pixel = rgb[offset + x];
96         int luminance = (306 * ((pixel >> 16) & 0xFF) +
97             601 * ((pixel >> 8) & 0xFF) +
98             117 * (pixel & 0xFF) +
99             (0x200)) >> 10; // 0x200 = 1<<9, half an lsb of the result to force rounding
100         matrix[offset + x] = (byte) luminance;
101       }
102     }
103     return matrix;
104   }
105
106   @Override
107   public boolean isCropSupported() {
108     return true;
109   }
110
111   @Override
112   public LuminanceSource crop(int left, int top, int width, int height) {
113     return new BufferedImageLuminanceSource(image, this.left + left, this.top + top, width, height);
114   }
115
116   // Can't run AffineTransforms on images of unknown format.
117   @Override
118   public boolean isRotateSupported() {
119     return image.getType() != BufferedImage.TYPE_CUSTOM;
120   }
121
122   @Override
123   public LuminanceSource rotateCounterClockwise() {
124     if (!isRotateSupported()) {
125       throw new IllegalStateException("Rotate not supported");
126     }
127     int sourceWidth = image.getWidth();
128     int sourceHeight = image.getHeight();
129
130     // Rotate 90 degrees counterclockwise.
131     AffineTransform transform = new AffineTransform(0.0, -1.0, 1.0, 0.0, 0.0, sourceWidth);
132
133     // Note width/height are flipped since we are rotating 90 degrees.
134     BufferedImage rotatedImage = new BufferedImage(sourceHeight, sourceWidth, image.getType());
135
136     // Draw the original image into rotated, via transformation
137     Graphics2D g = rotatedImage.createGraphics();
138     g.drawImage(image, transform, null);
139     g.dispose();
140
141     // Maintain the cropped region, but rotate it too.
142     int width = getWidth();
143     return new BufferedImageLuminanceSource(rotatedImage, top, sourceWidth - (left + width),
144         getHeight(), width);
145   }
146
147 }