初识ZXing

ZXing是一个开源Java类库用于解析多种格式的1D/2D条形码。目标是能够对QR编码、Data Matrix、UPC的1D条形码进行解码。 其提供了多种平台下的客户端包括:J2ME、J2SE和Android。



项目官网:
http://code.google.com/p/zxing/

项目测试: 

4.jpg    2.jpg     1.jpg   5.jpg 
  


教程:
条码扫描二维码扫描——ZXing android 源码简化
http://www.apkbus.com/android-44423-1-1.html

在Android上使用ZXing识别条码/二维码
http://www.apkbus.com/android-4934-1-1.html


Android 从ZXING 中剥离出来的

http://www.apkbus.com/android-13188-1-1.html


android 条码识别软件开发全解析
http://www.apkbus.com/android-44426-1-1.html

android 条码识别软件开发全解析(续1详解)
http://www.apkbus.com/android-44425-1-1.html

android 条码识别软件开发全解析(续2详解绝杀!)
http://www.apkbus.com/android-44424-1-1.html




····················································································································································
ZXing ("Zebra Crossing")
ZXing (pronounced "zebra crossing") is an open-source, multi-format 1D/2D barcode image processing library implemented in Java, with ports to other languages. Our focus is on using the built-in camera on mobile phones to scan and decode barcodes on the device, without communicating with a server. However the project can be used to encode and decode barcodes on desktops and servers as well. We currently support these formats:

UPC-A and UPC-E
EAN-8 and EAN-13
Code 39
Code 93
Code 128
ITF
Codabar
RSS-14 (all variants)
QR Code
Data Matrix
Aztec ('beta' quality)
PDF 417 ('alpha' quality)
This library is divided into several main components which are actively supported:

  • UPC-A and UPC-E
  • EAN-8 and EAN-13
  • Code 39
  • Code 93
  • Code 128
  • ITF
  • Codabar
  • RSS-14 (all variants)
  • QR Code
  • Data Matrix
  • Aztec ('beta' quality)
  • PDF 417 ('alpha' quality)
This library is divided into several main components which are actively supported:
  • core: The core image decoding library, and test code
  • javase: J2SE-specific client code
  • zxingorg: The source behind zxing.org/w
  • android: Android client, called Barcode Scanner
  • androidtest: Android test app
  • android-integration: Supports integration with our Barcode Scanner app via Intent

There are also additional modules which are contributed and/or intermittently maintained:
  • cpp: Partial C++ port
  • iphone: iPhone client + port to Objective C / C++ (QR code only)
  • zxing.appspot.com: The source behind our web-based barcode generator
  • csharp: Partial C# port
  • jruby: Ruby wrapper
  • actionscript: partial port to Actionscript
There are, finally, some modules no longer maintained but that are available from earlier releases:
  • javame: JavaME client
  • rim: RIM/Blackberry-specific client build
  • bug: Client for BugLabs's BUG

To complement our decoding software, we have created a web-based QR Code generator which supports contact information, calendar events, URLs, and much more.

转载必须注明出处,转自安卓巴士:http://www.apkbus.com/android-44422-1-1.html

你可能感兴趣的:(初识ZXing)