zxing

With Zxing retiring for iOS, which barcode-scanner to switch to?

喜欢而已 提交于 2019-12-30 03:03:59
问题 I have implemented ZXing to my iOS-app, however I am questioning it's maintainability as not long ago it was announced that ZXing to iOS is retiring: Retiring C++, Objective C code I've also read that there might be compatibility issues with the newer phones iPhone 5S.. Also running Xcode's static code analysis on the Zxing-library reveals memory errors, I'm not sure if these errors are false positive or not, but they make me doubt Zxing even more. Further, the performance of Zxing compared

With Zxing retiring for iOS, which barcode-scanner to switch to?

限于喜欢 提交于 2019-12-30 03:03:27
问题 I have implemented ZXing to my iOS-app, however I am questioning it's maintainability as not long ago it was announced that ZXing to iOS is retiring: Retiring C++, Objective C code I've also read that there might be compatibility issues with the newer phones iPhone 5S.. Also running Xcode's static code analysis on the Zxing-library reveals memory errors, I'm not sure if these errors are false positive or not, but they make me doubt Zxing even more. Further, the performance of Zxing compared

sample code to detect QRCode in an image

耗尽温柔 提交于 2019-12-30 02:47:07
问题 I use this code in C# to decode (not detect) a QRCode and it works: LuminanceSource ls = new RGBLuminanceSource(image, image.Width, image.Height); Result result = new QRCodeReader().decode(new BinaryBitmap(new HybridBinarizer(ls))); Now I would like to detect a QRCode in a more complex image with a lot of other stuffs such images and text. I'm not able to understand how to accomplish this because I cannot find any sample and transforming Bitmap (C#) to Bitmatrix for Detector (zxing) is not so

How to import ZXING to android studio?

帅比萌擦擦* 提交于 2019-12-30 02:13:06
问题 I use android studio I want to import 'ZXING' in my application, I find many articles and found the following site https://github.com/zxing/zxing/ I downloaded the ZIP and unzip, and find some tutorials But it does not seem to be too detailed about the details, what I need to import? To achieve QRCode scan I still have no idea how to do it 4/14 I tried Lennon URL provided "zxing-android-minimal" And import the 'gradle-wrapper.jar' But when I wrote new IntentIntegrator (this) .initiateScan ();

Android ZXing Get Barcode Image

冷暖自知 提交于 2019-12-29 14:20:55
问题 I am using Zxing library to generate a barcode in my Android application Intent intent = new Intent("com.google.zxing.client.android.ENCODE"); intent.putExtra("ENCODE_FORMAT", "UPC_A"); intent.putExtra("ENCODE_DATA", "55555555555"); startActivityForResult(intent,0); Is there anyway to save the generated image in my application which is calling Zxing? I see that in my onActivityResult I get intent null. Thanks in advance for your help 回答1: Take the views cache and save it in bitmap something

Zxing scanner Android Studio [closed]

回眸只為那壹抹淺笑 提交于 2019-12-28 13:42:54
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . Hi i know how to import a minimal Android library project to scan a qr code but after it scanned the qr code i would like to have a result of what the QR code get (url for example) but i really don't know how to retrieve the results so that's why i'am asking your help. I'm trying

Zxing scanner Android Studio [closed]

℡╲_俬逩灬. 提交于 2019-12-28 13:42:45
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . Hi i know how to import a minimal Android library project to scan a qr code but after it scanned the qr code i would like to have a result of what the QR code get (url for example) but i really don't know how to retrieve the results so that's why i'am asking your help. I'm trying

Zxing scanner Android Studio [closed]

て烟熏妆下的殇ゞ 提交于 2019-12-28 13:42:10
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . Hi i know how to import a minimal Android library project to scan a qr code but after it scanned the qr code i would like to have a result of what the QR code get (url for example) but i really don't know how to retrieve the results so that's why i'am asking your help. I'm trying

zxing in xcode 4.5 and ios 6

坚强是说给别人听的谎言 提交于 2019-12-28 05:54:10
问题 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",

C#生成二维条码zxing类库使用

好久不见. 提交于 2019-12-26 00:34:17
一、简介 ZXing是一个开放源码的,用Java实现的多种格式的1D/2D条码图像处理库,它包含了联系到其他语言的端口。Zxing可以实现使用手机的内置的摄像头完成条形码的扫描及解码。 该项目可实现的条形码编码和解码。我们目前支持以下格式: UPC-A,UPC-E EAN-8,EAN-13 39码 93码 代码128 创新及科技基金 库德巴 RSS-14(所有的变体) RSS扩展(大多数变体) QR码 数据矩阵 阿兹台克人('测试版'质量) PDF 417('阿尔法'的质量) Zxing库的主要部分支持以下几个功能:核心代码的使用、适用于J2SE客户端的版本、适用于Android客户端的版本(即BarcodeScanner)、Android的集成(通过Intent支持和BarcodeScanner的集成)等 二、使用 到谷歌code下载相应的代码 1.下载zxing最新的包 到zxing的主页: http://code.google.com/p/zxing/ 找到其中的CSharp文件夹,在vs中打开并编译,将obj下debug中的zxing.dll复制并粘帖到你的项目中的bin文件目录下, 右击添加项目引用。将zxing.dll引用到项目中,就可以在需要的地方使用了。 源代码中有两处UTF-8的问题,会导致中文出现乱码(编译.dll之前修改) 其一:com.google