2011-05-20 179 views
0

在黑莓5.0 SDK中實施條碼掃描時,我陷入了困境,因爲我在互聯網上深入搜索,並沒有發現任何線索。在Blackberry 5.0中使用zxing

然後,我開始寫我自己的類提供條碼掃描(使用斑馬線的核心) 然後我需要實現BitmapLuminanceSource(RIM版本沒有Android版本)

public class BitmapLuminanceSource extends LuminanceSource { 

    private final Bitmap bitmap; 

    public BitmapLuminanceSource(Bitmap bitmap){ 
     super(bitmap.getWidth(),bitmap.getHeight()); 
     this.bitmap = bitmap; 
    } 

    public byte[] getRow(int y, byte[] row) { 
       //how to implement this method 
     return null; 
    } 

    public byte[] getMatrix() { 
       //how to implement this method 
     return null; 
    } 
} 

回答

1

我已經解決了這個問題。

這裏的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(庫條形碼編碼/解碼)到我的項目

1

那麼,在LuminanceSourcejavadoc告訴你它返回什麼。並且您有android/中的PlanarYUVLuminanceSource這樣的實現向您展示了它的實際操作示例。你看過這些嗎?

雖然快速回答是將圖像的一行或整個圖像作爲亮度值的數組返回。每個像素有一個值爲byte,應將其視爲無符號值。

+0

是。我看看那些。然後我實現了BitmapLuminanceSource。當我運行該項目時,這不是錯誤。但是我無法獲得原始數據的正確值。 我對QR碼進行了「Hello」編碼,但是當想要解碼時 它返回不需要的字符(不是「Hello」) 我仍然需要驗證是否BitmapLuminanceSource實現的很好。但是,謝謝你的回答,一旦我解決了我的問題,我會提供一個更新。 – Wen 2011-05-20 08:13:17

+0

最後,我解決了這個問題。 – Wen 2011-05-21 05:22:00