ios - Aztec barcode encoding library for iPhone -


i've been searching library can convert string aztec barcode display on iphone screen, , haven't been able find anything. know of one?

there couple of qr code generators, that's different thing. it's integrating existing system, has aztec.

we have no need scan or decode barcodes, display them.

thanks.

you don't need third party library — aztec barcode generation has been part of built-in core image framework since ios 8 / macos 10.10. (it generates qr codes, code128, , pdf417 barcodes.) here's quick example (in swift 3):

let data = "xiuhcoatl, turquoise serpent of fires".data(using: .utf8)! let aztec = cifilter(name: "ciazteccodegenerator",     withinputparameters: [ "inputmessage" : data ])!     .outputimage! 

and image produces: aztec barcode of aztec mythology

see docs ciazteccodegenerator additional options on filter, , core image programming guide general info on using core image.


Comments

Popular posts from this blog

Add email recipient to all new Trac tickets -

400 Bad Request on Apache/PHP AddHandler wrapper -

php - Change action and image src url's with jQuery -