Remove my old email address from files. Might as well save spammers the trouble.
[zxing.git] / javame / src / com / google / zxing / client / j2me / LCDUIImageMonochromeBitmapSource.java
1 /*
2  * Copyright 2007 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.j2me;
18
19 import com.google.zxing.common.BaseMonochromeBitmapSource;
20
21 import javax.microedition.lcdui.Image;
22
23 /**
24  * <p>An implementation based on Java ME's {@link Image} representation.</p>
25  *
26  * @author Sean Owen
27  * @author Daniel Switkin (dswitkin@google.com)
28  */
29 public final class LCDUIImageMonochromeBitmapSource extends BaseMonochromeBitmapSource {
30
31   private final Image image;
32   private final int height;
33   private final int width;
34   private final int[] pixelHolder;
35
36   public LCDUIImageMonochromeBitmapSource(Image image) {
37     this.image = image;
38     height = image.getHeight();
39     width = image.getWidth();
40     pixelHolder = new int[1];
41   }
42
43   public int getHeight() {
44     return height;
45   }
46
47   public int getWidth() {
48     return width;
49   }
50
51   // This is expensive and should be used very sparingly.
52   protected int getLuminance(int x, int y) {
53     image.getRGB(pixelHolder, 0, width, x, y, 1, 1);
54     int pixel = pixelHolder[0];
55
56     // Instead of multiplying by 306, 601, 117, we multiply by 256, 512, 256, so that
57     // the multiplies can be implemented as shifts.
58     //
59     // Really, it's:
60     //
61     // return ((((pixel >> 16) & 0xFF) << 8) +
62     //         (((pixel >>  8) & 0xFF) << 9) +
63     //         (( pixel        & 0xFF) << 8)) >> 10;
64     //
65     // That is, we're replacing the coefficients in the original with powers of two,
66     // which can be implemented as shifts, even though changing the coefficients slightly
67     // corrupts the conversion. Not significant for our purposes.
68     return (((pixel & 0x00FF0000) >> 16) +
69             ((pixel & 0x0000FF00) >>  7) +
70              (pixel & 0x000000FF       )) >> 2;
71   }
72
73   // For efficiency, the RGB data and the luminance data share the same array.
74   protected int[] getLuminanceRow(int y, int[] row) {
75     if (row == null || row.length < width) {
76       row = new int[width];
77     }
78     image.getRGB(row, 0, width, 0, y, width, 1);
79     for (int x = 0; x < width; x++) {
80       int pixel = row[x];
81       row[x] = (((pixel & 0x00FF0000) >> 16) +
82                 ((pixel & 0x0000FF00) >>  7) +
83                  (pixel & 0x000000FF       )) >> 2;
84     }
85     return row;
86   }
87
88   protected int[] getLuminanceColumn(int x, int[] column) {
89     if (column == null || column.length < height) {
90       column = new int[height];
91     }
92     image.getRGB(column, 0, 1, x, 0, 1, height);
93     for (int y = 0; y < height; y++) {
94       int pixel = column[y];
95       column[y] = (((pixel & 0x00FF0000) >> 16) +
96                    ((pixel & 0x0000FF00) >>  7) +
97                     (pixel & 0x000000FF       )) >> 2;
98     }
99     return column;
100   }
101
102 }