文件中的 UIImage 始终为零
Posted
技术标签:
【中文标题】文件中的 UIImage 始终为零【英文标题】:UIImage from file always nil 【发布时间】:2015-11-18 21:31:10 【问题描述】:我正在制作一个文档扫描应用程序
扫描的文档存储在应用程序结构中的临时文件中,该文件的路径存储在 NSString 变量中
此图像被传递给成功加载的 UIImageView
[self.cameraViewController captureImageWithCompletionHander:^(NSString *imageFilePath)
UIImageView *captureImageView = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imageFilePath]];
captureImageView.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.7];
captureImageView.frame = CGRectOffset(weakSelf.view.bounds, 0, -weakSelf.view.bounds.size.height);
captureImageView.alpha = 1.0;
captureImageView.contentMode = UIViewContentModeScaleAspectFit;
captureImageView.userInteractionEnabled = YES;
[weakSelf.view addSubview:captureImageView];
然后想将图像转换为 base64 以供上传。为了做到这一点,我将调用以下接受 UIImage 对象的方法
- (NSString *)encodeToBase64String:(UIImage *)image
return [UIImagePNGRepresentation(image) base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength];
imageFilePath 变量的值为
/private/var/mobile/Containers/Data/Application/79C28B96-275D-48F1-B701-CABD699C388D/tmp/ipdf_img_1447880304.jpeg
为了从我使用的文件中获取图像
UIImage *img = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:imageFilePath ofType:nil]];
base64String = [self encodeToBase64String:img];
问题在于 UIImage 对象始终为 nill(或 nill)。起初我认为问题可能出在路径上,但图像会在 UIImageView 中加载。
有人可以帮我弄清楚为什么这不会返回存储在 imageFilePath 变量中的图像
【问题讨论】:
【参考方案1】:替换:
UIImage *img = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:imageFilePath ofType:nil]];
与:
UIImage *img = [UIImage imageWithContentsOfFile:imageFilePath];
您没有从包中加载图像。
此外,请确保您没有尝试在应用程序的执行中使用完整路径。只保留相对路径,因为应用沙箱的路径会随时间而变化。
【讨论】:
以上是关于文件中的 UIImage 始终为零的主要内容,如果未能解决你的问题,请参考以下文章