qr-code

How to built and print a scannable Pass for Passbook in iOS7

点点圈 提交于 2019-12-04 05:18:32
i can't figure out how to build a OR Code for a Pass that is scannable with the new QR code scanner in iOS7' Passbook App. When I try to scan a QR Code with a link to a working Pass, the App says it is 'No Pass available for this Card'. Card, hum?! Any ideas? For a pass to install, the following criteria have to be met: The link must be https The URL must return a valid .pkpass bundle The Content-Type header must be application/vnd.apple.pkpass Unfortunately, these requirements are not yet documented, but they are mentioned in the WWDC session What's new in Passbook The URL contained in the QR

How do you change the Back and Foreground Color of a CIFilter CIQRCodeGenerator Filter

有些话、适合烂在心里 提交于 2019-12-04 05:03:37
I'm trying to make a QR Code Generator for OS X but i haven't had succession in making a QRCode that can be more colourful that the black and white ones I'm using the CIQRCodeGenerator for the CIImage Filters how would i make this work I've got a sample code that I've implemented into my app :- + (NSImage *)createQRImageForString:(NSString *)string size:(CGSize)size { // Setup the QR filter with our string CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"]; [filter setDefaults]; NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding]; [filter setValue:data forKey:@

Read QR Code from scanned PDF

一世执手 提交于 2019-12-04 05:01:13
I'm trying to insert and read qrcode's from PDF files. To create/read qr codes from images i'm using zxing project and to manipulate the pdf i'm using Big Faceless PDF . Everything works well if i create the QR Code, insert into my pdf, and then read the images from the pdf and convert the correct one to QR Code. However , if i try to to read images from a scanned document (with a qr code sticker attach to it), i cannot obtain the qr code image from the pdf (the only image i can get, using Big Faceless PDF, is the document it self). Does anyone knows a Java library to search in pdf files for

React-native-camera limit barcode scan area

一世执手 提交于 2019-12-04 04:25:52
问题 I am using the barcode scanner from react-native-camera and currently if I use it and there are multiple QR-codes closely on top of each other, I point my camera at one and it reads the code above it which is outside of the display on screen but within the cameras view. If however there is no QR-code above the one I want to scan, then it scans the correct one, so it seems like it always scans the top QR-code within the cameras view. Here's my question: Is there a way to limit the "scan area"

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

萝らか妹 提交于 2019-12-04 02:42:13
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! Sean Owen Yes, see the zxing: URL format here . 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. The best thing would be to use a bluetooth barcode scanner. Something like Socket scan , CX2864-1336 would

Why QR Generator does not give me the correct URL in the generated QR Image?

我的梦境 提交于 2019-12-04 02:32:13
问题 I am using QR Generator and using the google API for this. I am generating a QR code which has a URL or we can say link to a website in the QR code. The link is correct when i print it But the problem is that when i pass it to the QR generator, the link is not correct. The correct link is like this. (http://localhost/crs/web/index.php/birthPublicSearch/birthCertificate/view/cert/B/MTc5OQ%3D%3D). But in QR Code The characters after /MTC5OQ does not show in link means that %3D%3D in not shown

Android QR Scanner/Reader App standalone without having to install zxing App - Is it Illegal/Legal-Anything else available apart from zxing [closed]

。_饼干妹妹 提交于 2019-12-04 01:32:38
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I have researched a lot about creating my own app for android with a QR code Scanner & Reader without having to install Zxing app on the phone. I have gone through a lot of questions here too and I have read it is possible via one or all of the following links:- http://jmanzano.me/integrating-zxing-in-our-own

Scanning QR code using Android's Mobile Vision API

折月煮酒 提交于 2019-12-03 23:05:16
I followed this tutorial on how to build an Android app that can scan QR codes. Here's the full code. I added the Google Play services using grade like so compile 'com.google.android.gms:play-services:7.8.0' . AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="bitinvent.io.qrscanner" > <meta-data android:name="com.google.android.gms.vision.DEPENDENCIES" android:value="barcode"/> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.CAMERA"/>

using opencv instead of imagemagick in zbar qr code decoder

女生的网名这么多〃 提交于 2019-12-03 22:15:53
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 using the correct way to read image data using opencv ? . When I tested only one image decoded and failed

Various barcode reader free SDK in iOS

自古美人都是妖i 提交于 2019-12-03 21:35:47
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 store. Please suggest P.S I want compatibility of scanner with latest iOS available. You scan customize