How do you generate an RGBA image in Core Graphics?

前端 未结 3 1167
梦谈多话
梦谈多话 2021-01-12 03:35

I\'m trying to generate an RGBA8 image from text to use as an OpenGL ES 2.0 texture.

+(UIImage *)imageFromText:(NSString *)text
{
  UIFont *font = [UIFont sy         


        
相关标签:
3条回答
  • 2021-01-12 03:58

    I was getting the same unsupported parameter combination error even though I was using kCGImageAlphaPremultipliedLast. The issue in my case turned out to be that the width I was getting was fractional. Turning it into an integer by passing int(width) to CGBitmapContextCreate solved the problem.

    --Edit in response to Steven's comment--

    The issue with feeding in a fractional width as the second argument is not that CGBitmapContextCreate interprets it as such -- as stated, it gets casted implicitly to the argument's unsigned integer type. Rather, it produces a discrepancy in the bytes_per_row argument, since int(width * 4) is not the same as int(width) * 4. E.g. if the width is 22.5, then width gets truncated to 22, but width * 4 computes to 90, not 88.

    0 讨论(0)
  • 2021-01-12 04:06
        CGColorSpaceRef colorSpace = CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB);
    
        CGBitmapInfo    bitmapInfo = kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Little;
    
        CGContextRef theContext = CGBitmapContextCreate(NULL, imgSize.width, imgSize.height, 8, 4*imgSize.width, colorSpace, bitmapInfo);
    
    0 讨论(0)
  • 2021-01-12 04:16

    The color space you specify during creation wouldn't cause an error like that.

    The reason you're getting that error is that you've specified 8 bits per component, presumably 4 color components in the 4*size.width value you passed in for bytesPerRow, yet a bitmapInfo parameter of kCGImageAlphaNone. kCGImageAlphaNone means only RGB, not RGBA. If you want RGBA, you should most likely specify kCGImageAlphaLast kCGImageAlphaPremultipliedLast.

    [EDIT] sorry. I should have said kCGImageAlphaPremultipliedLast, not kCGImageAlphaLast.

    So, something like this:

    CGColorSpaceRef colorSpace = CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB);
    CGContextRef contextRef =  CGBitmapContextCreate(NULL,
                                                     size.width,
                                                     size.height,
                                                     8,
                                                     4 * size.width,
                                                     colorSpace,
                                                     kCGImageAlphaPremultipliedLast);
    
    0 讨论(0)
提交回复
热议问题