libqrencode is licensed under the LGPL. For your code remain proprietary, it has to link to libqrencode in a manner that allows the user to replace the library with a modified version (1). This is impossible to do in the App Store. Your code would have to be licensed under the GPL to use libqrencode, and code licensed under the GPL is not allowed in the App Store (2). Therefore, you cannot use libqrencode in an App Store application.
That said, here is some code that can be used in an iOS project to interface with libqrencode:
#import <libqrencode/qrencode.h>
void freeRawData(void *info, const void *data, size_t size) {
free((unsigned char *)data);
}
- (UIImage *)quickResponseImageForString:(NSString *)dataString withDimension:(int)imageWidth {
QRcode *resultCode = QRcode_encodeString([dataString UTF8String], 0, QR_ECLEVEL_L, QR_MODE_8, 1);
unsigned char *pixels = (*resultCode).data;
int width = (*resultCode).width;
int len = width * width;
if (imageWidth < width)
imageWidth = width;
// Set bit-fiddling variables
int bytesPerPixel = 4;
int bitsPerPixel = 8 * bytesPerPixel;
int bytesPerLine = bytesPerPixel * imageWidth;
int rawDataSize = bytesPerLine * imageWidth;
int pixelPerDot = imageWidth / width;
int offset = (int)((imageWidth - pixelPerDot * width) / 2);
// Allocate raw image buffer
unsigned char *rawData = (unsigned char*)malloc(rawDataSize);
memset(rawData, 0xFF, rawDataSize);
// Fill raw image buffer with image data from QR code matrix
int i;
for (i = 0; i < len; i++) {
char intensity = (pixels[i] & 1) ? 0 : 0xFF;
int y = i / width;
int x = i - (y * width);
int startX = pixelPerDot * x * bytesPerPixel + (bytesPerPixel * offset);
int startY = pixelPerDot * y + offset;
int endX = startX + pixelPerDot * bytesPerPixel;
int endY = startY + pixelPerDot;
int my;
for (my = startY; my < endY; my++) {
int mx;
for (mx = startX; mx < endX; mx += bytesPerPixel) {
rawData[bytesPerLine * my + mx ] = intensity; //red
rawData[bytesPerLine * my + mx + 1] = intensity; //green
rawData[bytesPerLine * my + mx + 2] = intensity; //blue
rawData[bytesPerLine * my + mx + 3] = 255; //alpha
}
}
}
CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, rawData, rawDataSize, (CGDataProviderReleaseDataCallback)&freeRawData);
CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
CGBitmapInfo bitmapInfo = kCGBitmapByteOrderDefault;
CGColorRenderingIntent renderingIntent = kCGRenderingIntentDefault;
CGImageRef imageRef = CGImageCreate(imageWidth, imageWidth, 8, bitsPerPixel, bytesPerLine, colorSpaceRef, bitmapInfo, provider, NULL, NO, renderingIntent);
UIImage *quickResponseImage = [UIImage imageWithCGImage:imageRef];
CGImageRelease(imageRef);
CGColorSpaceRelease(colorSpaceRef);
CGDataProviderRelease(provider);
QRcode_free(resultCode);
return quickResponseImage;
}