处理CGBitmapContextCreate的错误

时间:2011-05-13 09:59:09

标签: iphone ios error-handling

如何捕获或处理在创建位图上下文期间抛出的错误? 顺便说一下,我知道错误意味着什么,我想用它来创建一个不同的上下文。

抛出错误的函数:

CGContextRef ctx = CGBitmapContextCreate(m_PixelBuf,  
                                                 CGImageGetWidth(grayImage),  
                                                 CGImageGetHeight(grayImage),  
                                                 CGImageGetBitsPerComponent(grayImage),
                                                 CGImageGetBytesPerRow(grayImage),  
                                                 CGImageGetColorSpace(grayImage), 
                                                 CGImageGetBitmapInfo(grayImage)
                                                 );

Consol日志错误:

Fri May 13 11:47:21 C.local x[2569] <Error>: CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 bits/pixel; 3-component color space; kCGImageAlphaLast; 616 bytes/row.
Fri May 13 11:47:21 C.local x[2569] <Error>: CGBitmapContextCreateImage: invalid context 0x0

1 个答案:

答案 0 :(得分:0)

尝试创建后,您可以检查上下文是否为NULL。