zxing

How to generate QR code with logo inside it?

和自甴很熟 提交于 2019-11-27 22:33:28
I am developing the application for Android devices. I want to generate QR code with logo inside it. With ZXing I know how to generate simple QR codes like this one: But I want to generate QR code with logo inside it. So I want to get something like this: Is there any way to do it? I have no idea how to do it. Could you help me please? May there is some ready library or example of how to do it. Thank you! You can add your logo it as an Image Overlay like public BufferedImage getQRCodeWithOverlay(BufferedImage qrcode) { BufferedImage scaledOverlay = scaleOverlay(qrcode); Integer deltaHeight =

Unity Zxing QR code scanner integration

感情迁移 提交于 2019-11-27 22:26:22
I need to integrate Zxing with vuforia to make a QR code scanning app in Unity? I have no idea how to integrate Zxing with Vuforia in unity.Can someone guide me how to do this?I have Zxing .dll files and Vuforia unity package.Thanks in Advance. I was looking for integrating Zxing with vuforia in Unity today. The first thing to do is to download the dll from : https://zxingnet.codeplex.com/ and copy the unity dll into your Plugins folder (which should be in the Assets folder) Then, I managed to found some examples (some of theses is outdated) : http://ydaira.blogspot.fr/2012/09/how-to-decode-qr

zxing in xcode 4.5 and ios 6

混江龙づ霸主 提交于 2019-11-27 21:27:27
As many of you noticed; zxing does not work in latest xcode (4.5/ios 6) Here is use case: checkout latest version from trunk (as some fixes were already added) create single view application in xcode 4.5 with ios 6.0 use README to add dependencies, paths etc (just follow step by step) add zxingcontroller call to class (renamed to mm) Compilation fails both for simulator and device It shows 31 error like this one: Undefined symbols for architecture i386: "std::string::c_str() const", referenced from all 31 errors are similar, difference is in symbols name May be somebody knows how to solve it

QR code reader for iPhone

北慕城南 提交于 2019-11-27 19:44:18
问题 I want to create QR code reader based application. Using which library, I can create my application ? Note: I searched in google. Always I am getting zxing . I downloaded the zxing project. But the problem is; I run the application. But it is reading only the Barcodes . There is no option to read QR code. Please tell me how to do this... Thanks in Advance. 回答1: ZBarSDK is another option. A very capable library. UPDATE January 2014 Beginning in iOS7, AVCaptureDevice now includes the ability to

zxing onActivityResult not called in Fragment only in Activity

烂漫一生 提交于 2019-11-27 19:18:31
问题 I'm having some issue with zxing onActivityResult(). As you can see in the code I did properly invoke new intent as described in https://code.google.com/p/zxing/wiki/ScanningViaIntent. The question is how can I catch onActivityResult() in Fragment, since I need this data in my Fragmnet and not in Activity? package com.example.testingcodereading; import android.content.Intent; import android.content.pm.ActivityInfo; import android.content.pm.ResolveInfo; import android.os.Bundle; import

ZXing convert Bitmap to BinaryBitmap

本小妞迷上赌 提交于 2019-11-27 18:38:23
I am using OpenCV and Zxing, and I'd like to add 2d code scanning. I have a few types of images that I could send. Probably the best is Bitmat (the other option is OpenCV Mat). It looks like you used to be able to convert like this: Bitmap frame = //this is the frame coming in LuminanceSource source = new RGBLuminanceSource(frame); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); //then I can use reader.decode(bitmap) to decode the BinaryBitmap However, RGBLuminaceSource looks like it no longer takes a bitmap as an input. So how else can I convert an input image to

Alternative to zxing QR reader library for Java/Android? [closed]

隐身守侯 提交于 2019-11-27 16:53:07
Is there any other library other than Zxing that can be used to create a QR code reader EVEN IF IT'S NOT FREE. of-course a free one will be great. but I'm also willing to pay to get a library that's easy in customization and to save time. thank you. I've found the answer for my question here http://sourceforge.net/news/?group_id=189236 it's much faster than zxing and much easier to implement. Thank you. For iOS: for iOS (zbar.sourceforge.net/iphone) and the documentation (zbar.sourceforge.net/iphone/sdkdoc/install.html) Dwivedi Ji there are no need to install zxing for implementing qr reader,

How to decode a QR-code image in (preferably pure) Python?

不羁岁月 提交于 2019-11-27 16:49:25
TL;DR : I need a way to decode a QR-code from an image file using (preferable pure) Python. I've got a jpg file with a QR-code which I want to decode using Python. I've found a couple libraries which claim to do this: PyQRCode ( website here ) which supposedly can decode qr codes from images by simply providing a path like this: import sys, qrcode d = qrcode.Decoder() if d.decode('out.png'): print 'result: ' + d.result else: print 'error: ' + d.error So I simply installed it using sudo pip install pyqrcode . The thing I find strange about the example code above however, is that it only imports

QR code scanner

别说谁变了你拦得住时间么 提交于 2019-11-27 14:10:43
I would like to create a QR code scanner in my app. I went through the zxing ,but I could not understand it. I am interested in QR codes only. All help is highly appreciated. Place a copy of the com.google.zxing.client.* source packages into your project. You can start the zxing scanning activity like this: Intent intent = new Intent(this, CaptureActivity.class); startActivityForResult(intent, 0); In the same activity that you invoked the CaptureActivity in you can handle the result when the scan completes with the following onActivityResult method: protected void onActivityResult(int

ZXing barcode scanner in custom layout in fragment

流过昼夜 提交于 2019-11-27 13:08:09
问题 I develope ZXing barcode continuous scanner following this page on Android Studio. My App build.gradle had include: repositories { mavenCentral() maven { url "https://raw.github.com/embarkmobile/zxing-android-minimal/mvn-repo/maven-repository/" } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:23.0.1' compile files('src/main/jniLibs/scanditsdk-android-4.7.5.jar') compile files('src/main/jniLibs/httpclient-4.0.jar') compile 'com