I have to development an QR Generator in Cocoa. but currently I was used QR Library for iPhone and ported to Cocoa by me. but just found many bugs since iPhone version in Generator Algorithm.

then, Is there any QR Encoding Library in Cocoa ?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

I've mostly only seen Objective-C libraries that read various code types. Don't forget, though, that Objective-C is a superset of C ...

http://fukuchi.org/works/qrencode/index.en.html

link|improve this answer
Now I'm using it, very impressive QR Code Library. But their need more library to output as png – meddlesome Jun 25 '11 at 5:18
...so get image from them, create an NSImage with it, then get its -TIFFRepresentation data, then save THAT... – Joshua Nozzi Jun 25 '11 at 13:49
Thanks, Now I was integrate the libpng to output as png. and use Core Image to change QR Color or padding. – meddlesome Jun 28 '11 at 5:05
Do you have some example code which paint or generate images? You might find github.com/digdog/qrencode interesting. – Thomas Oct 22 '11 at 1:27
feedback

I ported the Psytec C++ encoder to Objective-C. The project is at http://myang-git.github.com/QR-Code-Encoder-for-Objective-C. The library outputs the encoding result to a data matrix, which can be further rendered to an UIImage. Take a look!

link|improve this answer
Thank you, I will take a look. – meddlesome Jul 13 '11 at 5:05
Not as smooth to integrate as other solutions, but worked like a charm. – redent84 May 10 at 14:23
feedback

I find a validate ios QRCode encoder demo Cocoachina bbs has a demo could run and reference~~ link:http://www.cocoachina.com/bbs/read.php?tid=15119&page=e&#a

QRCode reader could go to use ZXing,its powerful I think

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.