Most apps use ZXing, but all examples of ZXing I've seen use a dedicated full screen activity (whether via intent request or embedded Activity class). Are there other bar code scanning libraries that encapsulate the barcode scanning in a View object?
If not, what are the components of ZXing I need to extract and/or rebuild? Can I reus...
I am developing a new application which hopefully will use a barcode reader to scan and find books. I will then use the ISBN information to get more information.
The intents work and I can scan 2d barcodes ok but not the 1d barcodes of books which I know scan fine using the full application.
This is my code. I have tried it without pu...
I need to scan a barcode using phonegap in Android and iPhone.
Is there a way to do this? If yes, please share links.
...
I'm looking for a method of classifying scanned pages that consist largely of text.
Here are the particulars of my problem. I have a large collection of scanned documents and need to detect the presence of certain kinds of pages within these documents. I plan to "burst" the documents into their component pages (each of which is an ind...
I'm in the process of designing a web application and I'm thinking about incorporating some barcode reading to facilitate data input. Let's suppose I have a list of tasks a courier needs to do. I would like to print something similar to the following page:
+----------------------------------------------------------------------+
| Task...
Hi! i have sample code of Barcode Scanner but when i install it in my iPhone 2G which contains Version 3.1.3 gives me the below error message.i have taken the code from this link:http://code.google.com/p/zxing/downloads/list
dyld: Library not loaded: /System/Library/Frameworks/CoreVideo.framework/CoreVideo
Referenced from: /var/mobile...
I have a system with two HID keyboards (actually, one's a barcode scanner.)
I registered for raw input with RIDEV_NOLEGACY to block the system from creating WM_KEY* messages for the barcode scanner, which tediously also blocks the messages from the other keyboard.
My goal is to keep the WM_* messages for any keybaord device that isn't ...
I am developing one application which need scanning component, I have application ready but when I build it in 2g phone with os version 3.1.3, application gives me error.
I have weak linked those framework which are not in 2g.
ERROR: Not Enough Frames In Stack
Do advice thanks in advance.
...
So right now I'm using the zxing barcode scanner in my app. Here is example code(generic):
if(position == 0){
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(intent, 0);
}
public void onActivityResult(i...
Hi
i have been looking for a long time to get a free sdk to read 2d datamatrix barcode for iPhone, i was successful in getting sdks for QR Code and all other 1D codes.
I tried using ZXing (but this reads only QR codes) :
also Big in japan's http://www.freebarcodescanner.com/ , but this is not able to read Datamatrix.
ZBar which also...
Hi,
I have problem with Zebex Z-3000 barcode scanner. It is connected to my PC via PS2 port. Does anybody knows about PS2 scanners. I had no problem with USB scanners but I ca't get PS2 scanners work. Do I have to listen PS2 port?
...