我正在NSImage
我的代码中从头开始创建一个。首先,我分配一个字节数组:
pixels = malloc( (int)( size.width * size.height) * 4 * 8 * sizeof(unsigned char));
然后我尝试创建一个测试图像,它应该包含从左侧的纯黑色到右侧的纯红色的渐变:
-(void)generateTestImage{
int idx =0;
for( int i=0; i<(int)(size.height); i++){// Rows
for (int j=0; j<(int) size.width; j++){// Columns
pixels[ idx + 0 ] = 255 * ((float) j / size.width); // r
pixels[ idx + 1 ] = 0; // g
pixels[ idx + 2 ] = 0; // b
pixels[ idx + 3 ] = 255;// a
idx += 4;
}
}
}
最后,我将字节数组转换为NSImage
使用:
-(void) convertPixelsToImage{
if (renderImage == NULL)
renderImage = [[NSImage alloc] initWithSize:size];
else{
NSArray *prevReps = [renderImage representations];
for (id r in prevReps)
[renderImage removeRepresentation:r];
}
NSLog(@"Creating bitmapImageReprsentation with size:%@", NSStringFromSize(size));
NSBitmapImageRep *imgRep =
[[NSBitmapImageRep alloc] initWithBitmapDataPlanes:&pixels
pixelsWide:size.width
pixelsHigh:size.height
bitsPerSample:8
samplesPerPixel:sampPerPix
hasAlpha:true
isPlanar:false
colorSpaceName:NSDeviceRGBColorSpace
bitmapFormat:0
bytesPerRow:0
bitsPerPixel:0];
[renderImage addRepresentation:imgRep];
}
但是,生成的图像不是我所期望的。
这是索引偏移的放大视图
看起来好像我的索引已关闭,因为渐变图案每行向左移动 9 个像素。
此外,我对图像底部的白色条纹感到困惑......
在过去的几个小时里,我一直在尝试各种索引方案,但这些方案都不能解决问题。我已经验证了我在size
整个代码中都使用了相同的方法。此外,我已经验证生成的图像具有正确的尺寸,但它的内容是关闭的。
这段代码有明显的问题吗?有想法该怎么解决这个吗?