我拍摄了一张 13.3MB 的图像并将其添加到 XCode。我知道在编译时,XCode 会执行一些技巧来减小文件大小。我这样做是为了测试转换为数据后的图像现在有多大:
UIImage *image = [UIImage imageNamed:@"image.jpg"];
NSData *data = UIImageJPEGRepresentation(image, 1.0);
NSLog(@"length: %i", data.length);
我回来的长度是26758066
。如果以字节为单位,那么它读取我为 26.7MB。图片怎么突然这么大?我是否有另一种方法可以在不先通过 UIImage 的情况下以数据形式获取图像?
编辑:进一步的测试表明这是可行的,并产生了约 13.3MB 的数据长度 - 预期数量:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"image" ofType:@"jpg"];
NSData *data = [NSData dataWithContentsOfFile:filePath];
NSLog(@"length: %i", data.length);