我正在为 iPhone/iPod 开发照片应用程序。
我想从 iPhone 应用程序中的大图像中获取原始数据并对其执行一些像素操作并将其写回磁盘/图库。
到目前为止,我一直在使用以下技术将从图像选择器获得的 UIImage 转换为无符号字符指针:
CGImageRef imageBuff = [imageBuffer CGImage];//imageBuffer is an UIImage *
CFDataRef pixelData = CGDataProviderCopyData(CGImageGetDataProvider(imageBuff));
unsigned char *input_image = (unsigned char *)CFDataGetBytePtr(pixelData);
//height & width represents the dimensions of the input image
unsigned char *resultant = (unsigned char *)malloc(height*4*width);
for (int i=0; i<height;i++)
{
for (int j=0; j<4*width; j+=4)
{
resultant[i*4*width+4*(j/4)+0] = input_image[i*4*width+4*(j/4)];
resultant[i*4*width+4*(j/4)+1] = input_image[i*4*width+4*(j/4)+1];
resultant[i*4*width+4*(j/4)+2] = input_image[i*4*width+4*(j/4)+2];
resultant[i*4*width+4*(j/4)+3] = 255;
}
}
CFRelease(pixelData);
我正在对结果进行所有操作,并使用以下方法以原始分辨率将其写回磁盘:
NSData* data = UIImagePNGRepresentation(image);
[data writeToFile:path atomically:YES];
我想知道:
- 转换实际上是无损的吗?
- 如果手头有 20-22 MP 图像...在后台线程中执行此操作是否明智?(崩溃的可能性等......我想知道这样做的最佳实践)。
- 有没有更好的方法来实现这个(这里需要获取像素数据)?