我正在尝试检测碰撞忽略透明区域。我已经完成了所有这些,但是返回 UIImageView 中单个像素的函数是否透明。目前我从这里整理了一些帖子:
- (BOOL)IsPixelNonTransparentFromImageUIImage*)image atXint)x andYint)y {
CGImageRef imageRef = [image CGImage];
NSUInteger width = CGImageGetWidth(imageRef);
NSUInteger height = CGImageGetHeight(imageRef);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
unsigned char *rawData = (unsigned char*) calloc(height * width * 4, sizeof(unsigned char));
NSUInteger bytesPerPixel = 4;
NSUInteger bytesPerRow = bytesPerPixel * width;
NSUInteger bitsPerComponent = 8;
CGContextRef context = CGBitmapContextCreate(rawData, width, height,
bitsPerComponent, bytesPerRow, colorSpace,
kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef);
CGContextRelease(context);
NSUInteger byteIndex = (bytesPerRow * y) + x * bytesPerPixel;
CGFloat alpha = (rawData[byteIndex + 3] * 1.0)/255.0;
free(rawData);
return alpha > 0.0;
}
这不仅对我不起作用,而且我很确定有一个更时尚的解决方案可以只找到一个像素。任何帮助将不胜感激。
Best Answer-推荐答案 strong>
下面是检测单个像素 alpha 的代码:
- (BOOL)IsPixelNonTransparentFromImageUIImage*)image atXint)x andYint)y {
unsigned char pixel[1] = { 0 };
CGContextRef context = CGBitmapContextCreate(pixel, 1, 1, 8, 1, NULL, (CGBitmapInfo)kCGImageAlphaOnly);
UIGraphicsPushContext(context);
[image drawAtPoint:CGPointMake(-x, -y)];
UIGraphicsPopContext();
CGContextRelease(context);
return pixel[0] != 0;
}
想法是把图像绘制到一个一个像素一个像素的上下文中,在(-x, -y) 的偏移处,这样(x, y) 被“绘制”到我们创建的位图上下文的单个像素中。这样可以避免动态分配和渲染整个图片以加快处理速度。 kCGImageAlphaOnly 用于只截取图片的alpha channel 。
这是一个测试这段代码的程序:
UIImage *image = [UIImage imageNamed"BlueCircle.png"];
NSLog(@"%@", [NSValue valueWithCGSize:image.size]);
for (int y = 0 ; y < image.size.height ; y++) {
NSMutableString *buf = [NSMutableString string];
for (int x = 0 ; x < image.size.width ; x++) {
[buf appendFormat"%c", [self IsPixelNonTransparentFromImage:image atX:x andY:y] ? '*' : '-'];
}
NSLog(@"%@", buf);
}
这是一个 link to the BlueCircle.png image that I used for testing 。
当这段代码运行时,我在日志中得到这个打印输出:
2015-04-15 20:15:55.213[10456:620425] ---------************---------
2015-04-15 20:15:55.213[10456:620425] -------****************-------
2015-04-15 20:15:55.214[10456:620425] ------******************------
2015-04-15 20:15:55.214[10456:620425] ----**********************----
2015-04-15 20:15:55.215[10456:620425] ---************************---
2015-04-15 20:15:55.216[10456:620425] ---************************---
2015-04-15 20:15:55.216[10456:620425] --**************************--
2015-04-15 20:15:55.217[10456:620425] -****************************-
2015-04-15 20:15:55.217[10456:620425] -****************************-
2015-04-15 20:15:55.218[10456:620425] ******************************
2015-04-15 20:15:55.219[10456:620425] ******************************
2015-04-15 20:15:55.219[10456:620425] ******************************
2015-04-15 20:15:55.220[10456:620425] ******************************
2015-04-15 20:15:55.278[10456:620425] ******************************
2015-04-15 20:15:55.279[10456:620425] ******************************
2015-04-15 20:15:55.279[10456:620425] ******************************
2015-04-15 20:15:55.280[10456:620425] ******************************
2015-04-15 20:15:55.280[10456:620425] ******************************
2015-04-15 20:15:55.281[10456:620425] ******************************
2015-04-15 20:15:55.281[10456:620425] ******************************
2015-04-15 20:15:55.282[10456:620425] ******************************
2015-04-15 20:15:55.282[10456:620425] -****************************-
2015-04-15 20:15:55.283[10456:620425] -****************************-
2015-04-15 20:15:55.283[10456:620425] --**************************--
2015-04-15 20:15:55.284[10456:620425] ---************************---
2015-04-15 20:15:55.284[10456:620425] ---************************---
2015-04-15 20:15:55.330[10456:620425] ----**********************----
2015-04-15 20:15:55.331[10456:620425] ------******************------
2015-04-15 20:15:55.331[10456:620425] -------****************-------
2015-04-15 20:15:55.332[10456:620425] ---------************---------
关于ios - 在 UIImageView 中访问单个像素 alpha,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/29660888/
|