1

我创建了 NSBitmapImageRep 女巫,我用 glReadPixels 信息填充。它看起来像这样:

    NSBitmapImageRep *imageRep = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL pixelsWide:width pixelsHigh:height bitsPerSample:8 samplesPerPixel:3 hasAlpha:NO isPlanar:NO colorSpaceName:NSDeviceRGBColorSpace bytesPerRow:3 * width bitsPerPixel:0];
    glReadPixels(0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE, [imageRep bitmapData]);

然后将其转换为 NSData 并写入文件。但我得到颠倒的图像。我该如何解决?

4

2 回答 2

1

画成一个翻转的NSImage. 这会将倒置的图像绘制到正确的方向。然后,您可以获得 tiff 表示,您可以使用另一个with将NSImage其更改为其他图像类型。使用新的图像表示来制作一个新对象,并将新对象保存到文件中。NSBitmapImageRepimageRepWithData:NSDatarepresentationUsingType:properties:NSData

    NSRect rect = self.bounds;
    NSSize size = rect.size;
    GLsizei width = (GLsizei)size.width;
    GLsizei height = (GLsizei)size.height;
    NSBitmapImageRep* imgRep = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL pixelsWide:width pixelsHigh:height bitsPerSample:8 samplesPerPixel:3 hasAlpha:NO isPlanar:NO colorSpaceName:NSDeviceRGBColorSpace bytesPerRow:width*3 bitsPerPixel:0];
    glReadPixels(0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE, [imgRep bitmapData]);
#ifdef __MAC_10_8
    NSImage* image = [NSImage imageWithSize:size flipped:YES drawingHandler:^(NSRect dstRect){
        return [imgRep drawInRect:dstRect];
    }];
#else
    NSImage* image = [[NSImage alloc] initWithSize:size];
    [image lockFocusFlipped:YES];
    [imgRep drawInRect:rect];
    [image unlockFocus];
#endif
    NSData* tiff = [image TIFFRepresentation];
于 2012-08-23T15:30:45.370 回答
0

bytesPerRow 应该是(width*3+3)&~3

于 2013-03-23T17:15:25.430 回答