From a08e362b0bc9c0ba6f25a792a356663624dc9d00 Mon Sep 17 00:00:00 2001 From: Christian Schneppe Date: Thu, 24 Nov 2016 21:30:06 +0100 Subject: explictly scan for aztec and qr codes only --- .../pixart/messenger/services/BarcodeProvider.java | 32 +--------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'src/main/java/de/pixart/messenger/services') diff --git a/src/main/java/de/pixart/messenger/services/BarcodeProvider.java b/src/main/java/de/pixart/messenger/services/BarcodeProvider.java index 3382d0a5e..ddd92af63 100644 --- a/src/main/java/de/pixart/messenger/services/BarcodeProvider.java +++ b/src/main/java/de/pixart/messenger/services/BarcodeProvider.java @@ -24,8 +24,6 @@ import com.google.zxing.common.BitMatrix; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; -import java.io.IOException; -import java.io.InputStream; import java.io.OutputStream; import java.util.Hashtable; @@ -181,7 +179,7 @@ public class BarcodeProvider extends ContentProvider implements ServiceConnectio for (int y = 0; y < height; y++) { final int offset = y * width; for (int x = 0; x < width; x++) { - pixels[offset + x] = result.get(x, y) ? Color.BLACK : Color.TRANSPARENT; + pixels[offset + x] = result.get(x, y) ? Color.BLACK : Color.WHITE; } } final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); @@ -191,32 +189,4 @@ public class BarcodeProvider extends ContentProvider implements ServiceConnectio return null; } } - - static class TransferThread extends Thread { - InputStream in; - OutputStream out; - - TransferThread(InputStream in, OutputStream out) { - this.in = in; - this.out = out; - } - - @Override - public void run() { - byte[] buf = new byte[1024]; - int len; - - try { - while ((len = in.read(buf)) >= 0) { - out.write(buf, 0, len); - } - - in.close(); - out.flush(); - out.close(); - } catch (IOException e) { - Log.e(Config.LOGTAG, "Exception transferring file", e); - } - } - } } \ No newline at end of file -- cgit v1.2.3