All Projects → giswangsj → Qrcodescanner

giswangsj / Qrcodescanner

Licence: mit
A lib to aid you quickly achieve qrcode scan

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Qrcodescanner

Scannermapp
A QR-code and barcode acanner app built in Delphi using ZXing and TFrameStand
Stars: ✭ 65 (-33.67%)
Mutual labels:  qrcode-scanner, qrcode
Cordova Plugin Qrscanner
A fast, energy efficient, highly-configurable QR code scanner for Cordova apps and the browser.
Stars: ✭ 485 (+394.9%)
Mutual labels:  qrcode-scanner, qrcode
QR Attendance
This project is an attendance system which provides attendance on scanning QR code. The attendance is stored in Excel sheet named with the date of attendance taken. In this folder a file named Generate.py is used to generate the QR code for given input file. Attend.py file is for scanning the QR code
Stars: ✭ 17 (-82.65%)
Mutual labels:  qrcode, qrcode-scanner
barcode scan2
[reborned barcode_scan] A flutter plugin for reading 2D barcodes and QR codes.
Stars: ✭ 43 (-56.12%)
Mutual labels:  qrcode, qrcode-scanner
Qrcode
A pure JavaScript QRCode encode and decode library.
Stars: ✭ 69 (-29.59%)
Mutual labels:  qrcode-scanner, qrcode
QRManager
This is an example that uses ZXing.Net.Mobile for Forms. See more information here:
Stars: ✭ 19 (-80.61%)
Mutual labels:  qrcode, qrcode-scanner
Efqrcode
A better way to operate QR Code in Swift, support iOS, macOS, watchOS and tvOS.
Stars: ✭ 4,121 (+4105.1%)
Mutual labels:  qrcode-scanner, qrcode
qrcodescan.in
📠 A simple, fast, and useful progressive web application.
Stars: ✭ 144 (+46.94%)
Mutual labels:  qrcode, qrcode-scanner
Barcodescanner.xf
Barcode Scanner using GoogleVision API for Xamarin Form
Stars: ✭ 82 (-16.33%)
Mutual labels:  qrcode-scanner, qrcode
Czxing
C++ port of ZXing and ZBar for Android.
Stars: ✭ 854 (+771.43%)
Mutual labels:  qrcode-scanner, qrcode
qr-code-unity-3d-read-generate
Generating a QR code / Scanning a QR code in Unity 3D. Pre-build DLL and sample code from old Unity
Stars: ✭ 70 (-28.57%)
Mutual labels:  qrcode, qrcode-scanner
Qrcodereader.swift
Simple QRCode reader in Swift
Stars: ✭ 1,202 (+1126.53%)
Mutual labels:  qrcode-scanner, qrcode
quagga2-reader-qr
Quagga2 sample external reader for QR codes
Stars: ✭ 20 (-79.59%)
Mutual labels:  qrcode, qrcode-scanner
qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
Stars: ✭ 69 (-29.59%)
Mutual labels:  qrcode, qrcode-scanner
flutter scan
scanner qrcode in widget tree & decoder qrcode from image
Stars: ✭ 63 (-35.71%)
Mutual labels:  qrcode, qrcode-scanner
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (+198.98%)
Mutual labels:  qrcode-scanner, qrcode
qrrs
CLI QR code generator and reader written in rust
Stars: ✭ 29 (-70.41%)
Mutual labels:  qrcode, qrcode-scanner
BarcodeReader
Simple multi-format barcode reader for Windows
Stars: ✭ 26 (-73.47%)
Mutual labels:  qrcode, qrcode-scanner
Tesseract Ocr Scanner
基于Tesseract-OCR实现自动扫描识别手机号
Stars: ✭ 622 (+534.69%)
Mutual labels:  qrcode-scanner, qrcode
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (+902.04%)
Mutual labels:  qrcode-scanner, qrcode

QrCodeScanner

API

非常简单易用的android二维码扫描库,不需要你申请权限,简单到一行代码搞定。支持二维码扫描,本地二维码图片解析,二维码生成,闪光灯等。当别人还在焦头烂额地写着代码,你已经在喝咖啡了。

Preview

二维码扫描

本地图片

本地图片

Features

  • QrCode Decode
  • QrCode Encode
  • Flash light
  • Load and scan images containing QR Code
  • Easy to use

Implementation

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
	implementation 'com.github.giswangsj:QrCodeScanner:v1.0.1'
}

Usage

In your activity or fragment

// 扫描二维码
QrCodeScanner.with(this)
    .onSuccess {
    	tvResult.text = "扫描结果:$it"
    }
    .onFail {
    	tvResult.text ="扫描失败:$it"
    }
    .start()


// 二维码生成
// 设置要生成的内容,大小以及logo
val result = QrCodeScanner.createQrCode("content", 500, 500, null)

License

MIT License

Copyright (c) 2020 wangsj

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].