我已經解決了這個問題。
這裏的BitmapLuminanceSource實施
import net.rim.device.api.system.Bitmap;
import com.google.zxing.LuminanceSource;
public class BitmapLuminanceSource extends LuminanceSource {
private final Bitmap bitmap;
private byte[] matrix;
public BitmapLuminanceSource(Bitmap bitmap) {
super(bitmap.getWidth(), bitmap.getHeight());
int width = bitmap.getWidth();
int height = bitmap.getHeight();
this.bitmap = bitmap;
int area = width * height;
matrix = new byte[area];
int[] rgb = new int[area];
bitmap.getARGB(rgb, 0, width, 0, 0, width, height);
for (int y = 0; y < height; y++) {
int offset = y * width;
for (int x = 0; x < width; x++) {
int pixel = rgb[offset + x];
int luminance = (306 * ((pixel >> 16) & 0xFF) + 601
* ((pixel >> 8) & 0xFF) + 117 * (pixel & 0xFF)) >> 10;
matrix[offset + x] = (byte) luminance;
}
}
rgb = null;
}
public byte[] getRow(int y, byte[] row) {
if (y < 0 || y >= getHeight()) {
throw new IllegalArgumentException(
"Requested row is outside the image: " + y);
}
int width = getWidth();
if (row == null || row.length < width) {
row = new byte[width];
}
int offset = y * width;
System.arraycopy(this.matrix, offset, row, 0, width);
return row;
}
public byte[] getMatrix() {
return matrix;
}
}
我加com.google.zxing(庫條形碼編碼/解碼)到我的項目
來源
2011-05-21 05:25:38
Wen
是。我看看那些。然後我實現了BitmapLuminanceSource。當我運行該項目時,這不是錯誤。但是我無法獲得原始數據的正確值。 我對QR碼進行了「Hello」編碼,但是當想要解碼時 它返回不需要的字符(不是「Hello」) 我仍然需要驗證是否BitmapLuminanceSource實現的很好。但是,謝謝你的回答,一旦我解決了我的問題,我會提供一個更新。 – Wen 2011-05-20 08:13:17
最後,我解決了這個問題。 – Wen 2011-05-21 05:22:00