qr-code

Is it possible to launch a QR Code scan from a mobile web app running on iPad?

China☆狼群 提交于 2019-12-05 19:04:57
问题 Client wants a button on the mobile web app that launches a QR code scan (with camera on iPad) then returns to the mobile web app with the QR code info. Wondering how best to achieve this and/or if it's even possible. Thanks! 回答1: Yes, see the zxing: URL format here. 回答2: Not really possible, sorry. The closest you can get is some apps have a URL scheme ( redlaser:// , for example) that you could provide a link to. There's no way of detecting that they've got the app installed, though. 回答3:

Google app engine QR code decoder

家住魔仙堡 提交于 2019-12-05 16:13:45
I was wondering if there is a good library for python for decoding QR code. Basically what I would like is to give library image with QR code on it and the library would output contents saved in image. I've looked before with no success. Two problems are that native c code can't be compiled and you can't get access to the file system. pyqrcode didn't work out and neither did zxing. Have you already looked at : http://pyqrcode.sourceforge.net/ If code compiling does not work for you, then there is also pure python implementation at : http://github.com/hcvst/pyqr If you're still looking for

QR code reader for BlackBerry

♀尐吖头ヾ 提交于 2019-12-05 15:27:45
Is there a BlackBerry library/component (open source or commercial) for integration in my own application that acts as QR code reader? I'd like to fully integrate it in my application. Or alternatively: is there a way to use the open source ZXing library in combination with the camera, ideally with live detection of the code? If you're targeting BlackBerry 6, RIM has now included the ZXing library as part of the OS: http://devblog.blackberry.com/2010/10/barcode-api/ For pre-6.0.0 applications, the webpage for the zxing project mentions JavaME and RIM-specific modules: http://code.google.com/p

Extract the data from QR Codes and create a new QR code with colour

自作多情 提交于 2019-12-05 09:37:17
Has anyone heard of this before ? Extract the QR Codes (all the QR Codes must be in same Width and Height {square}) and get the data from each QR Code , and combine them. Then get the every pixel value from each QR Code and change them to hexadecimal . You will give #FFFFFFFF , #FF000000 , #00000000 (white,black, transparent) and the like (but for black and white QR Code , it would only 2 of them). Then for each value from each QR Code, by creating a new colour QR Code which the colour is according to the value from each hexadecimal and the content of the new colour QR Code will have the

Various barcode reader free SDK in iOS

百般思念 提交于 2019-12-05 09:36:04
问题 I am making a barcode reader app which is free. I am looking for free SDK to decode Datamatrix,QR,Aztec,UPC,EAN barcodes. I have implemented ZBar SDK as per now. Which detects QR,UPC and EAN successfully. I tested This link Zbar ZXingOBjC But none of these are able to detect Aztec properly. With Data Matrix,UPC,EAN and QR i found Redlaser very effective but now its not free. Now, is there any free SDK available to detect all four barcodes without paying as i want to keep my app free on app

ChecksumException in zxing QRCodeReader when NOT reading a QR-code with an URL

拟墨画扇 提交于 2019-12-05 08:29:52
The following code works perfectly and fast if I am scanning a QR code with an URL. However, if I am decoding a QR code with a simple string or number sequence (which is what I would like to do), it randomly works sometimes, but 99% of the time it keeps failing with a ChecksumException. if (webcam.isOpen()) { if ((image = webcam.getImage()) == null) { continue; } LuminanceSource source = new BufferedImageLuminanceSource(image); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); try { result = new QRCodeReader().decode(bitmap); } catch (NotFoundException e) { //exception

using opencv instead of imagemagick in zbar qr code decoder

走远了吗. 提交于 2019-12-05 04:45:48
问题 I am writing a qr code decoder using Zbar api. I am using windows pre built libraries . I used the following code to load the image to ZBar IplImage *src=cvLoadImage("image.png",CV_LOAD_IMAGE_GRAYSCALE); ImageScanner scanner; scanner.set_config(ZBAR_NONE, ZBAR_CFG_ENABLE, 1); int width = src->width; int height = src->height; uchar* raw = (uchar *)(src->imageData); Image image(width, height, "Y800", raw, width * height); int n = scanner.scan(image); But it failed to decode the image. Am I

Ionic cordova-plugin-qrscanner has no camera preview

試著忘記壹切 提交于 2019-12-05 04:32:00
I run a simple demo to use cordova-plugin-qrscanner, it can scan qrcode but no camera preview. qrscannerDemo on Github Related code blow: import { Component } from '@angular/core'; import { NavController } from 'ionic-angular'; import { AndroidPermissions } from '@ionic-native/android-permissions'; import { QRScanner, QRScannerStatus } from '@ionic-native/qr-scanner'; @Component({ selector: 'page-home', templateUrl: 'home.html' }) export class HomePage { constructor(public navCtrl: NavController, public androidPermissions: AndroidPermissions, public qrScanner: QRScanner) { } qrscanner() { //

ZBar - QR Code Scanner, crashing in Android Studio

无人久伴 提交于 2019-12-05 02:09:25
I have downloaded from git latest zBar QR Code Scanner (SDK 0.2). I am trying to implement it in my application. I work on Android Studio. What have I done: I have copied zBar.jar to libs folder of my Project. I have created *.jar files from "amerabi", "amerabi-v7a", "x86" by zip'ing them and changing their format to *.jar. I have copied amerabi.jar, amerabi-v7a.jar and x86.jar to libs folder of my Project. There is no need to change anything in gradle because it is already configured to import every jar file from libs projects. See below: dependencies { compile 'com.android.support:support-v4

QR codes Limits

戏子无情 提交于 2019-12-05 01:28:53
I have to generate codes with custom fields: id of field+name of field+values of the field. How long is the data I can encode inside the QRcode? I need to know how many fields\values I can insert. Should I use XML or JSON or CSV? What is most generic and efficient? XML / JSON will not qualify for a QR code's alphanumeric mode since it will include lower-case letters. You'll have to use byte mode. The max is 2,953 characters. But, the practical limit is far less -- perhaps a few hundred characters. It is far better to encode a hyperlink to data if you can. As Terence says, no reader will do