aztec-barcode

Android. Howto read Aztec Codes from within my App? [closed]

坚强是说给别人听的谎言 提交于 2019-12-07 06:03:00
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I would like to embed an Aztec Code reader into my app. I need control over the GUI to place some buttons around the camera view, while reading the code to be able to switch the camera on / off (to save the battery) What I found was ZXing - which is not reliable yet. Apps with an own SDK like neoreader, which do

Various barcode reader free SDK in iOS

百般思念 提交于 2019-12-05 09:36:04
问题 I am making a barcode reader app which is free. I am looking for free SDK to decode Datamatrix,QR,Aztec,UPC,EAN barcodes. I have implemented ZBar SDK as per now. Which detects QR,UPC and EAN successfully. I tested This link Zbar ZXingOBjC But none of these are able to detect Aztec properly. With Data Matrix,UPC,EAN and QR i found Redlaser very effective but now its not free. Now, is there any free SDK available to detect all four barcodes without paying as i want to keep my app free on app

Android. Howto read Aztec Codes from within my App? [closed]

ぐ巨炮叔叔 提交于 2019-12-05 08:57:41
I would like to embed an Aztec Code reader into my app. I need control over the GUI to place some buttons around the camera view, while reading the code to be able to switch the camera on / off (to save the battery) What I found was ZXing - which is not reliable yet. Apps with an own SDK like neoreader , which do not give me the control over my GUI. Is there a solution for that problem? Maybe som libs? Proprietary libs? I found a proprietary lib from manateeworks.com They do offer a lib, which can be used to decode Aztec Codes In case anyone is looking for a more up-to-date answer to this

Various barcode reader free SDK in iOS

自古美人都是妖i 提交于 2019-12-03 21:35:47
I am making a barcode reader app which is free. I am looking for free SDK to decode Datamatrix,QR,Aztec,UPC,EAN barcodes. I have implemented ZBar SDK as per now. Which detects QR,UPC and EAN successfully. I tested This link Zbar ZXingOBjC But none of these are able to detect Aztec properly. With Data Matrix,UPC,EAN and QR i found Redlaser very effective but now its not free. Now, is there any free SDK available to detect all four barcodes without paying as i want to keep my app free on app store. Please suggest P.S I want compatibility of scanner with latest iOS available. You scan customize

Reading raw bytes from an Aztec barcode via AVMetadataMachineReadableCodeObject yields unexpected result

[亡魂溺海] 提交于 2019-11-29 01:43:07
I have been working on an iOS reader app for a special kind of barcode used by Deutsche Bahn (german rail) for a while now. It is a variant of Aztec barcode that concatenates a DSA signature string and a zlib deflated payload. I was stuck, when I learned that the AVMetadataMachineReadableCodeObject had no public method for reading the raw bytes contained in the barcode and the string methods always garbled the zlib-compressed data. Luckily, this answer sent me in the right direction. The (private) bytes can be accessed with KVO, and as I don't currently expect to distribute the app on the App

Need help decompressing zlib data stored in Aztec barcode (Deutsche Bahn Ticket)

柔情痞子 提交于 2019-11-28 08:15:45
问题 Premise I'm trying to decode the data from the barcode format currently used on tickets issued by Deutsche Bahn (german railway). I have found this very useful website (german) that already does a similar thing and offers a python script. The website states that the data is compressed with zlib , the resulting blob is signed with DSA and all of it is stored in the barcode (Aztec format). Example of such a barcode Problem I have used the script provided on the website to successfully decode a

Reading raw bytes from an Aztec barcode via AVMetadataMachineReadableCodeObject yields unexpected result

假如想象 提交于 2019-11-27 16:10:48
问题 I have been working on an iOS reader app for a special kind of barcode used by Deutsche Bahn (german rail) for a while now. It is a variant of Aztec barcode that concatenates a DSA signature string and a zlib deflated payload. I was stuck, when I learned that the AVMetadataMachineReadableCodeObject had no public method for reading the raw bytes contained in the barcode and the string methods always garbled the zlib-compressed data. Luckily, this answer sent me in the right direction. The