Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a free barcode scanner SDK for iPhone 3G and iPhone 4, any suggestions? (it needs to be free)

share|improve this question
Possible duplicate of stackoverflow.com/questions/5233199/… – Mitesh Khatri Apr 14 '11 at 6:43
1  
@MiteshKhatri Not a possible duplicate, that question deals with QR scan and this is barcode... – tipycalFlow Aug 10 '12 at 4:45

8 Answers

Solution for iPhone 3G is to use ZBar but you'll have add a layer to capture the image and feed it the to ZBar sdk such as:

ZBarReaderController *reader = [ZBarReaderController new];
reader.readerDelegate = self;

    //... code to get image

CGImageRef imgCG = image.CGImage;


        id<NSFastEnumeration> results = [reader scanImage:imgCG];
        ZBarSymbol *symbol = nil;

   for(symbol in results)

    break;
resultText.text = symbol.data;

Also don't forget to use weak link for AVFoundation, CoreVideo and CoreMedia framework

share|improve this answer
What is the code to get the image? You mean like take a picture or what??? – Ethan Allen Jan 15 at 6:38
@EthanAllen yes – Muhaye Jan 15 at 16:09
Muhaye - Thanks for the answer, but can you provide more context or sample code? I thought ZBar couldn't detect blurry barcodes? Some sample code would really be very helpful. – Ethan Allen Jan 15 at 18:15
working for me fine – ravinder kumar Apr 5 at 8:24

I would recommend zxing. While the main branch of the project is written in Java, there is an Objective-C port which can be found here.

share|improve this answer
Wow that was quick, great answer! – bradley.ayers Apr 14 '11 at 6:28
zxing is not working – SourabhBanerjee Apr 14 '11 at 7:22
zxing-1.6 / Scantest app is not working Please Any other suggestion? – SourabhBanerjee Apr 14 '11 at 9:10
1  
Zxing only supports QR codes on iOS, what gives? – MrDaniel Aug 27 '12 at 18:35
That is not true actually, they only support QR codes. I am using as a 1D reader in iOS for two current apps. You just have to do a little finagling to get it working. Let me know if you want to know – Sepui Sep 30 '12 at 16:31
show 4 more comments

Although I'm sure that there are others, here is a starter free & non-free list (with some repeats from other answers)

  • zxing (as of June 2011) claims to not handle 1D barcodes (apache-open-source)
  • shopsavvy (has a couple of licenses, including a free, with strings attached) (I think this might be related to the old big-in-japan scanner)
  • red laser (not free)
share|improve this answer
1  
shopsavvy doesn't seem to have a free license (anymore): 'install fees' start at $5.000 per public app. – Julian D. Apr 18 '12 at 9:34

If support for the iPhone 3G (or the iPad 2 or iPod Touch) is important for your application, I'd recommend choosing a solution that can decode barcodes in blurry images, such as our Scandit barcode scanner SDK. The iOS devices mentioned before all have a fixed-focus camera and will thus always suffer from out-of-focus blur when a barcode is placed in front of the camera.

Scandit also comes with a free community price plan that meets your "free" requirement. (Disclaimer: I'm one of the Scandit developers.)

share|improve this answer

If you just want to write a demo app and get the decoded message from a barcode, Shaopsavvy provides free APIs which are good. Building the app is also easy.

Or you can try ZBar. The disadvantage might be they only support iPhone 3GS or iPhone 4, whose cameras has auto-focus function. I have an iTouch 4 with camera, but it doesn't work: no auto-focus function.

zxing is originally for Android, but they also have APIs for iOS.

share|improve this answer
which devices have an autofocus camera? i'm having trouble with scanning small QR codes. – gonzobrains Jun 12 '11 at 4:51
Hi gonzobrains, I'm assuming you are asking about iPhone camera. Camearas on iPhone 3GS and iPhone have auto-focus function. Cameras on iTouch 4 does NOT have auto-focus. – Kerry Jun 30 '11 at 19:42

I would highly recommend reading the license agreements that you may be thinking about blindly agreeing to as well - especially for ones that claim to be offering you a free, unlimited plan. The fact is, they aren't as free as you may think, and could seriously cost you more than you imagined it would (they basically try to snake their way into getting a piece of your application's profits - just because you decided to use their "free" service heh...).

There are some agreements that I've seen that, if you ever plan to sell your app on the app store - they essentially get a pretty hefty cut along with a upfront fee that you probably can't afford.

oh, and I'd recommend you read them to the end. Business major or just an every-day developer - doesn't matter. You can read in quite plain text just what it is they get in return if you break their very, very low maximum number of uses. Just saying...

share|improve this answer

Please look at ZXingObjC at https://github.com/TheLevelUp/ZXingObjC which supports 1D barcodes and is an up to date port of ZXing.

working great.

share|improve this answer

Zxing is good from the license perspective (apache-open-source), but it still doesn't scan 1D barcodes on iPhone.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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