zxing

Android - Barcode Scanning, Options? Zxing?

空扰寡人 提交于 2019-11-27 12:18:00
问题 I want to create an application for Android that will be able to scan barcodes, get the information contained within the barcode and then be able to use that information in some way. I have no idea how to create a barcode scanner so I went Googling and it seems Zxing is the most commonly used way to implement a barcode scanner in an app. Some Links: http://code.google.com/p/zxing/ http://awalkingcity.com/blog/2008/08/25/qr-codes-made-easy-in-android/ Using ZXing to create an android barcode

Xcode 4.6 zXing compile error after Xcode update (4H127)

浪尽此生 提交于 2019-11-27 11:43:24
问题 Different projects using ZXing have error after last Xcode update: Error messages are: private field 'cached_y_' is not used Private field 'bits_' is not used Private field 'cached_row_num_' is not used Private field 'dataHeight_' is not used Any compiler flag I have to set up? 回答1: Just add this flag -Wno-unused-private-field under ZXingWidget target -> Build Settings -> Other Warning Flags. Click the + button and paste the flag, clean and build again. (No need to remove any other flag, just

How to integrate ZXing Library to Android Studio for Barcode Scanning?

删除回忆录丶 提交于 2019-11-27 11:35:23
I've been looking all over internet how to include zxing library to my project, and I found this tutorial: http://blog.dihaw.com/integrating-zxing-in-your-android-app-as-standalone-scanner/ But when I reach the point that you need to check for BeepManager to add the R import I get all kinds of errors in my project (Even on the MainActivity) that it couldn't find R. Also I found this one https://github.com/journeyapps/zxing-android-embedded/blob/master/README.md which seemed a lot easier because it was auto integrated by gradle, but when I sync it pops an error that it couldn't find the files.

Calling barcode scanner on a button click in android application

杀马特。学长 韩版系。学妹 提交于 2019-11-27 10:53:47
I have downloaded the zxing 1.6 and was able to successfully run a standalone barcode scanner through it. Now this scanner is in another project and (the CaptureActivity) and I have my app's different project called MyProj , all I want to do is on click of button in my project call CaptureActivity in another project , how do I import that entire project in my project or what do I do it get this working. Thanking in advance I think that "copying" Barcode Scanner and include it in your app might be overloading your projects. You should certainly use the Intent from the Scanner: From here: http:/

looking for best barcode scanner library, besides zxing [closed]

∥☆過路亽.° 提交于 2019-11-27 09:12:45
问题 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 6 years ago . I am looking for some best barcode libraries on all platforms. I know zxing but wondering more libraries besides it. Any help is appreciated~ 回答1: Jeff Lamarche's Cocoa Barcodes project for iPhone and iPad Zxing's barcode image process library Android barcode library ISBN & QR Barcode Scanning Mobile App for

com.google.zxing.NotFoundException exception comes when core java program executed?

余生长醉 提交于 2019-11-27 06:01:19
问题 I have a jpeg file which has 2D bar code. Image resolution is 1593X1212. I am using xing library to decode this barcode from image. I got following code on net. import java.awt.image.BufferedImage; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import javax.imageio.ImageIO; import com.google.zxing.BinaryBitmap; import com.google.zxing.ChecksumException; import com.google.zxing.FormatException;

Extracting information from a scanned GS1-type barcode

我只是一个虾纸丫 提交于 2019-11-27 05:13:36
I am developing an app on Android Studio to get the expiry date of items upon scanning the barcode. I don't want the user to install ZXing barcode app separately so I embedded the ZXing code into my project. Doing this I have been able to obtain the product identifier. I also want to get product information such as the description, manufacturer and expiry date using the scanned barcode data. How can I do that? There are two processes involved in obtaining the information represented by a GS1-type barcode that stores data in GS1 Application Identifier Standard Format. Extraction of the data

How to increase scanning area size in zxing

倾然丶 夕夏残阳落幕 提交于 2019-11-27 04:43:10
问题 Hii everyone currently iam working on scanning qr code from my app and i have used zxing library and it's working good and my problem is in my galaxy s4 mobile the scanning area is very small Please help me thanks in advance 回答1: The CameraManager class has two constants defined MIN_FRAME_WIDTH and MIN_FRAME_HEIGHT . You should modify them as desired and everything should work: private static final int MIN_FRAME_WIDTH = 240; // (your desired value here) private static final int MIN_FRAME

How to generate QR code with logo inside it?

百般思念 提交于 2019-11-27 04:36:08
问题 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! 回答1: You can add your logo it as an Image Overlay like public BufferedImage

Zxing 2.2 import as a library project(not .jar) in eclipse

半腔热情 提交于 2019-11-27 03:41:16
问题 I have downloaded the zxing 2.2 code from the below link https://code.google.com/p/zxing/downloads/list My requirement is to import the "core" project into eclipse and add few code into it. then mark it to be library project. I want to include this library project into barcode scanner sample app and use the barcode scanner app as library from my project. 回答1: Solved prerequisties download latest zxing package. Process 1 create a java project in eclipse.and name it to something like ZxingCore.