如何更改CIFilter CIQRCodeGenerator过滤器的背景颜色和前景色 [英] How do you change the Back and Foreground Color of a CIFilter CIQRCodeGenerator Filter

查看:477
本文介绍了如何更改CIFilter CIQRCodeGenerator过滤器的背景颜色和前景色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试为OS X创建QR Code生成器,但是我没有继承制作出比我正在使用CIQRCodeGenerator进行CIImage滤镜的黑白QRQR更加丰富多彩的QRCode.我完成了这项工作,我已经在我的应用中实现了一个示例代码:-

I'm trying to make a QR Code Generator for OS X but i haven't had succession in making a QRCode that can be more colourful that the black and white ones I'm using the CIQRCodeGenerator for the CIImage Filters how would i make this work I've got a sample code that I've implemented into my app :-

+ (NSImage *)createQRImageForString:(NSString *)string size:(CGSize)size {
// Setup the QR filter with our string
CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"];
[filter setDefaults];

NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
[filter setValue:data forKey:@"inputMessage"];
CIImage *image = [filter valueForKey:@"outputImage"];

// Calculate the size of the generated image and the scale for the desired image size
CGRect extent = CGRectIntegral(image.extent);
CGFloat scale = MIN(size.width / CGRectGetWidth(extent), size.height / CGRectGetHeight(extent));

// Since CoreImage nicely interpolates, we need to create a bitmap image that we'll draw into
// a bitmap context at the desired size;
size_t width = CGRectGetWidth(extent) * scale;
size_t height = CGRectGetHeight(extent) * scale;
CGColorSpaceRef cs = CGColorSpaceCreateDeviceRGB();
CGContextRef bitmapRef = CGBitmapContextCreate(nil, width, height, 8, 256*4, cs, (CGBitmapInfo)kCGImageAlphaPremultipliedFirst);

#if TARGET_OS_IPHONE
CIContext *context = [CIContext contextWithOptions:nil];
#else
CIContext *context = [CIContext contextWithCGContext:bitmapRef options:nil];
#endif

CGImageRef bitmapImage = [context createCGImage:image fromRect:extent];

CGContextSetInterpolationQuality(bitmapRef, kCGInterpolationNone);
CGContextScaleCTM(bitmapRef, scale, scale);
CGContextDrawImage(bitmapRef, extent, bitmapImage);

// Create an image with the contents of our bitmap
CGImageRef scaledImage = CGBitmapContextCreateImage(bitmapRef);

// Cleanup
CGContextRelease(bitmapRef);
CGImageRelease(bitmapImage);

return [[NSImage alloc] initWithCGImage:scaledImage size:NSZeroSize];
}

所以有人可以向我指出正确的方向.

So can someone Point me in the right direction please.

推荐答案

下面是一个快速示例(适用于Google员工)

Here's an example in swift (for the googlers)

func qrCode(from string: String) -> UIImage? {
    let data = string.data(using: .ascii)

    // Generate the code image with CIFilter
    guard let filter = CIFilter(name: "CIQRCodeGenerator") else { return nil }
    filter.setValue(data, forKey: "inputMessage")

    // Scale it up (because it is generated as a tiny image)
    let scale = UIScreen.main.scale
    let transform = CGAffineTransform(scaleX: scale, y: scale)
    guard let output = filter.outputImage?.transformed(by: transform) else { return nil }

    // Change the color using CIFilter
    let colorParameters = [
        "inputColor0": CIColor(color: UIColor.black), // Foreground
        "inputColor1": CIColor(color: UIColor.clear) // Background
    ]
    let colored = output.applyingFilter("CIFalseColor", parameters: colorParameters)

    return UIImage(ciImage: colored)
}

这篇关于如何更改CIFilter CIQRCodeGenerator过滤器的背景颜色和前景色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆