2

我正在为 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];

我想知道:

  1. 转换实际上是无损的吗?
  2. 如果手头有 20-22 MP 图像...在后台线程中执行此操作是否明智?(崩溃的可能性等......我想知道这样做的最佳实践)。
  3. 有没有更好的方法来实现这个(这里需要获取像素数据)
4

2 回答 2

1

是的,该方法是无损的,但我不确定 20-22 MP 图像。如果我想编辑大图像,我认为 Iphone 根本不是一个合适的选择!

于 2013-04-19T09:35:59.270 回答
1

我已经成功地使用这种技术捕获和编辑高达 22 MP 的图像。

在 iPhone 4s 上进行了测试,效果很好。但是,我使用的一些效果需要 Core Image 滤镜。似乎 CIFilters 不支持超过 16 个 MP 图像。如果在大于 16MP 的图像上使用,过滤器将返回空白图像。

我仍然希望人们对 iOS 中的无损大图编辑策略发表评论。

于 2013-04-25T09:09:22.940 回答