使用CGBitmapContextCreate时,我的像素数组中会忽略Alpha

时间:2015-11-18 12:30:27

标签: ios objective-c quartz-core

我正在尝试使用像素数组绘制带有核心图形的图像。

我的图片是568x320,这是我的代码:

int k = 0;
unsigned char pixels[320 * 568*4];
for(int i = 0; i<568/1;i++) {
    for(int j = 0; j<320/1;j++) {
        pixels[k] = 212; //B
        pixels[k+1] = 2; //G
        pixels[k+2] = 87;//R
        pixels[k+3] = drand48()*255; //A
        k+=4;
    }
}
void *baseAddress = &pixels;


NSUInteger bitsPerComponent = 8;

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

CGContextRef context = CGBitmapContextCreate(baseAddress, 568, 320, 8, 4*568, colorSpace, kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst);

CGImageRef cgImage = CGBitmapContextCreateImage(context);

CGContextRelease(context);
CGColorSpaceRelease(colorSpace);

UIImage *textureImage = [UIImage imageWithCGImage:cgImage];

基本上,颜色看起来正确,但没有透明度。如果alpha为0,则图像为黑色,否则为蓝色。

我知道为什么我没有透明度?

编辑:

这是我的结果和我期望的Alpha结果

current result expected result

我用

得到了第二个结果
for(int i = 0; i<568/1;i++) {
    for(int j = 0; j<320/1;j++) {
       [[UIColor colorWithRed:87./255 green:2.0/255 blue:212.2/255 alpha:drand48()] setFill];
       CGContextFillRect(ctx, CGRectMake(i, j, 1, 1));
    }
 }

但与CGBitmapContextCreate

相比,它非常慢

1 个答案:

答案 0 :(得分:1)

您错误地使用了CGBitmapContextCreate。第一个参数是目标,而不是数据源。您甚至不需要创建位图上下文来创建CGImage。请检查以下代码。

int k = 0;
unsigned char pixels[320*568*4];
for(int i=0; i<568; i++) {
    for(int j=0; j<320; j++) {
        pixels[k] = 87; //R
        pixels[k+1] = 2; //G
        pixels[k+2] = 212; //B
        pixels[k+3] = drand48()*255; //A
        k+=4;
    }
}

CGDataProviderRef data = CGDataProviderCreateWithData(NULL, &pixels, 320*568*4*sizeof(char), NULL);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

CGImageRef cgImg = CGImageCreate(568, 320, 8, 4*8, 4*568, colorSpace, kCGBitmapByteOrderDefault | kCGImageAlphaLast, data, NULL, true, kCGRenderingIntentDefault);
UIImage *textureImage = [UIImage imageWithCGImage:cgImg];

CGColorSpaceRelease(colorSpace);
CGDataProviderRelease(data);
CGImageRelease(cgImg);

如果您想更改颜色顺序,请使用kCGBitmapByteOrderDefault | kCGImageAlphaLast标记。

顺便说一下。你为什么在循环条件下除以1?