QR code generation and scanning source code download

QR code generation and scanning source code download

The QR code generation and scanning function codes are collected. The scanning function includes the scanning of QR code and barcode, and has a 360 scanning UI effect, as a QR code tool.

Source code introduction

Source code running screenshot

Run screenshot

Scanning of QR codes and barcodes

QR code generation

Source code snippet

  1. /***
  2. *
  3. * @param string The string to generate the QR code
  4. * @param format QR code format
  5. * @return Returns the QR code image
  6. * @throws WriterException
  7. */  
  8. public Bitmap qr_code(String string, BarcodeFormat format)
  9. throws WriterException {
  10. MultiFormatWriter writer = new MultiFormatWriter();
  11. Hashtable<encodehinttype, string= "" > hst = new Hashtable<encodehinttype, string= "" >();
  12. hst.put(EncodeHintType.CHARACTER_SET, "UTF-8" );
  13. BitMatrix matrix = writer.encode(string, format, 400 , 400 , hst);
  14. int width = matrix.getWidth();
  15. int height = matrix.getHeight();
  16. int [] pixels = new   int [width * height];
  17. for ( int y = 0 ; y < height; y++) {
  18. for ( int x = 0 ; x < width; x++) {
  19. if (matrix.get(x, y)) {
  20. pixels[y * width + x] = 0xff000000 ;
  21. }
  22.   
  23. }
  24. }
  25. Bitmap bitmap = Bitmap.createBitmap(width, height,
  26. Bitmap.Config.ARGB_8888);
  27. // Generate bitmap through pixel array, refer to api for details  
  28. bitmap.setPixels(pixels, 0 , width, 0 , 0 , width, height);
  29. return bitmap;
  30. }
  31. </encodehinttype,></encodehinttype,>

Source code download address: http://down..com/data/1968746

<<:  An image picker that mimics iMessage in iOS8

>>:  Cool elastic menu, with horizontal and arc

Recommend

Beware! The “strongest invasive pest on earth” is entering its active period

As the weather warms up, red fire ants enter thei...

Half-hour comic book on Chinese history: Mythological China (1)

Mixed Knowledge Specially designed to cure confus...

Why is it said that reading articles about operations online is useless?

If you log on to major product operation websites...

Meizu PRO 5: "PRO" in these 5 places

Simply skipping 1, 2, 3, 4 and naming the product...

“Not even recognizing one’s own mother”, this is possible!

Audit expert: Yin Tielun Deputy Chief Physician, ...

Wang Rui's 10-day advanced yoga course Baidu Cloud download

Wang Rui's 10-day advanced yoga course Baidu ...

Jesse's Trading System (half-year course) with instructions + video course

Jesse's Trading System (half-year course) wit...

Why is everyone fleeing Windows 10?

About two weeks ago, Microsoft released Win10 SDK...

7 ways to make an event creative

After all, the purpose of activities is to get mo...

Lenovo launches 7-inch tablet S5000 to compete with Asus Nexus 7

[September 9 news] After ASUS launched the Nexus 7...

The latest brand marketing cases of Double 11 in 2019

Pre-sales for Double 11 begin on October 20. In o...