I am working on a phone app and U would like to use Zxing for my project. However, I know that alot of people are crazy about Redlaser so I had decided to try it out. When I went to the mall I had noticed that the scanner does not even read the UPC for Stores like Forever 21, H&M or Tilly's! This is a huge problem for me because these are very popular stores in Southern California! I tried it at hot topic, but at least there it would read the barcode and return zero results, but at these other stores it was nothing. If Redlaser can not even read the barcode at those stores, then I will make the assumption that Zxing definitely will not even attempt to read it either. Is there anyway to fix this? I know one issue is that those stores are not in the google shopping Api database, but if I added them to my datafeeds database Api would they still be unreadable? I'm really hoping for a soliton.

link|improve this question
feedback

2 Answers

You're mixing up two things here: scanning and providing additional information. Both RedLaser and ZXing should be able to scan all UPC and EAN barcodes and come up with the scanned number. When it comes to providing additional information, neither the RedLaser SDK (as opposed to the RedLaser app) nor the ZXing library provide any additional information. That's up to you to implement.

If you weren't even able to scan the product's barcode in a store, it could also mean that the company uses a non-standard barcode format with company private barcode numbers. Even if you could scan these barcodes, it's very unlikely that there is any any service to get additional information for these private numbers. It also indicates that these products are probably sold by single company only. But most products today have a EAN/UPC/GS1 barcode with a unique barcode number.

Update:

If the product has a UPC/EAN barcode, you can scan it and get an (almost) unique product number. This is the kind of barcode all cash desk support. And the UPC/EAN/GS1 number is the product number support by almost all providers of product information.

If it's a Code 39, Code 128, ITF barcode (or few additional formats depending on the barcode scanner library), you can scan it as well and get a number or string. However, it's interpretation might differnt from shop to shop.

If it's yet another barcode symbology, you cannot even scan it with the barcode library.

Furthermore, many products have several barcodes with different purposes: one might indeed be a sort of product number but the other ones might be something that of no use for you even if you could decode it (such as the serial number of an electronic device).

link|improve this answer
Instead of using google shopping Api to pull the information of the data, i would prefer to use popshops data pack API. In that Api I can contact those stores who have their own barcodes and add it to the data pack API on popshops and retrieve information from there once it is scanned. I supposed that the issue is that the scanners won't read thier barcode format if it is not the stanards that you have mentioned. So, if that were the case I could not fix it? – Pbaynj Jul 31 '11 at 16:21
There are some barcode format that you cannot scan. See my update. – Codo Jul 31 '11 at 17:14
Wow! Thank you very much for breaking it down much easier! I'll do some more research to understand what type of barcode they are using and take it from there. Much appreciated – Pbaynj Jul 31 '11 at 18:51
feedback

I am guessing that you are not looking at a UPC/EAN product code, but most likely a Code 39 barcode that encodes some store-specific identifier.

ZXing definitely reads Code 39. Try it with Barcode Scanner. RedLaser might not since it is focused on UPC/EAN, though it's based on the same library.

But, even though you can read the contents, I doubt you will be able to do much with it. It is likely a number that doesn't mean anything outside the store's systems.

link|improve this answer
What if I can read the contents but I have access to their information. The same information of what is decoded. Anything is possible if they have an affiliate network and they are willing to work with you. – Pbaynj Jul 31 '11 at 19:40
Sure, then it's fine if you know what you're going to do with that number. The barcode itself ought to be easily readable. – Sean Owen Jul 31 '11 at 19:53
Zing is only reading Qrode barcodes but it does not scan regular barcodes. I installed the barcode scanner for Zxing like you had said. – Pbaynj Aug 1 '11 at 21:10
Erm, nope, that's entirely wrong. Unless you disabled it, it scans UPC, EAN, Code 39, Code 93, Code 128, ITF, Codabar, and RSS14 / DataBar – Sean Owen Aug 1 '11 at 22:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.