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

link|improve this question
Possible duplicate of stackoverflow.com/questions/5233199/… – Mitesh Khatri Apr 14 '11 at 6:43
feedback

5 Answers

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.

link|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
feedback

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)
link|improve this answer
shopsavvy doesn't seem to have a free license (anymore): 'install fees' start at $5.000 per public app. – Julian D. Apr 18 at 9:34
feedback

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)
    // EXAMPLE: just grab the first barcode
    break;
resultText.text = symbol.data;

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

link|improve this answer
feedback

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.

link|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
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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