Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Barcode SDK to support 1D, QR code, data matrix etc. for iPhone

I need a bar code engine to support above 3 bar code types (1D, QR code, data matrix) for iPhone. I tried zxing, zbar which in my case doesnt support data matrix. I found some commercial versions also.

But I am looking for a free SDK.

like image 632
Dilshan Avatar asked Nov 05 '22 23:11

Dilshan


1 Answers

This question is very old, but I'd like to answer it anyway for completeness. I would recommend zxing, as it supports all the codes mentioned in the question.

However, since iOS7 there is also the option of using the built-in scanner API (which I have found quicker and more accurate than zxing after a couple of hours testing). I also found the Cocoa APIs slightly easier to integrate with a custom UI. The downside is that (to my knowledge) Data Matrix is not supported.

A third option would be to use a clever combination of both, maybe also to fall back gracefully for pre-iOS7 devices.

like image 76
Krumelur Avatar answered Nov 11 '22 16:11

Krumelur