2012-09-03 24 views
6

我得到這樣的錯誤在我的控制檯:CGBitmapContextCreateImage錯誤

:CGBitmapContextCreate:無效數據字節/行:至少應爲1920年8整數位/組件,3種成分,kCGImageAlphaPremultipliedFirst。 :CGBitmapContextCreateImage:無效的情況下爲0x0

我用下面的代碼:

- (UIImage *) imageFromSampleBuffer:(CMSampleBufferRef) sampleBuffer 
{ 
    // Get a CMSampleBuffer's Core Video image buffer for the media data 
    CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer); 
    // Lock the base address of the pixel buffer 
    CVPixelBufferLockBaseAddress(imageBuffer, 0); 

    // Get the number of bytes per row for the pixel buffer 
    void *baseAddress = CVPixelBufferGetBaseAddress(imageBuffer); 

    // Get the number of bytes per row for the pixel buffer 
    size_t bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer); 
    // Get the pixel buffer width and height 
    size_t width = CVPixelBufferGetWidth(imageBuffer); 
    size_t height = CVPixelBufferGetHeight(imageBuffer); 

    // Create a device-dependent RGB color space 
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); 

    // Create a bitmap graphics context with the sample buffer data 
    CGContextRef context = CGBitmapContextCreate(baseAddress, width, height, 8, 
               bytesPerRow, colorSpace, kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst); 
    // Create a Quartz image from the pixel data in the bitmap graphics context 
    CGImageRef quartzImage = CGBitmapContextCreateImage(context); 
    // Unlock the pixel buffer 
    CVPixelBufferUnlockBaseAddress(imageBuffer,0); 

    // Free up the context and color space 
    CGContextRelease(context); 
    CGColorSpaceRelease(colorSpace); 

    // Create an image object from the Quartz image 
    UIImage *image = [UIImage imageWithCGImage:quartzImage]; 

    // Release the Quartz image 
    CGImageRelease(quartzImage); 

    return (image); 
} 
+0

如果您的NSLog'bytesPerRow','width'和'height',結果怎樣? – Wildaker

+0

imageView中沒有圖像顯示 – Nims

+0

我的意思是,如果你在'CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();'之前加'NSLog(@「%zi,%zi,%zi」,width,height,bytesPerRow);',輸出是什麼在控制檯上? – Wildaker

回答

18

這是固定我的問題: 爲「Wildaker」的建議,這是「這是調用它的代碼」,或多或少。

在Apple示例中設置了輸出格式。 也許你跳過這部分來簡化?!

output.videoSettings = [NSDictionary dictionaryWithObject: [NSNumber numberWithInt:kCVPixelFormatType_32BGRA] forKey: (id)kCVPixelBufferPixelFormatTypeKey];

+0

這正是我沒有做過的事^^感謝您的教訓! Swift 3的 –

+1

:output.videoSettings = [kCVPixelBufferPixelFormatTypeKey as AnyHashable:kCVPixelFormatType_32BGRA] – Massimo

0

void *baseAddress = CVPixelBufferGetBaseAddress(imageBuffer);應改爲:uint8_t *baseAddress = (uint8_t*)CVPixelBufferGetBaseAddress(imageBuffer);

+0

您可以使用代碼塊以更好的方式向您顯示代碼。並可以添加更多的描述。 :-) –

+0

感謝您的建議,我會注意到這些 – easonwzs