用UIImage读取灰度图像素数据为0
上面是我要读取的灰度图,单通道8位。我用了UIImage
和CGImage
来读取这张图的像素数据:
UIImage *heightmap = [UIImage imageNamed:[_terrainFiles valueForKey:HEIGHTMAP]];
CGImageRef imageRef = [heightmap CGImage];
_width = CGImageGetWidth(imageRef);
_height = CGImageGetHeight(imageRef);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();
_heightData = (unsigned char*)calloc(_width * _height, sizeof(unsigned char));
NSUInteger bytesPerPixel = 1;
NSUInteger bytesPerRow = bytesPerPixel * _width;
NSUInteger bitsPerComponent = 8;
CGContextRef context = CGBitmapContextCreate(_heightData, _width, _height,
bitsPerComponent, bytesPerRow, colorSpace,
kCGImageAlphaNone);
CGColorSpaceRelease(colorSpace);
CGContextRelease(context);
for (int i = 0; i < _width * _height; i++) {
if (_heightData[i] != 0) {
printf("%hhd ", _heightData[i]);
}
//printf("\n");
}
下面我打印了读出来的数据,全是0。为什么是这样?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你calloc完_heightData 就去BitmapContextCreate了,肯定是0啊。imageRef压根就没用到- -。