UIImageWriteToSavedPhotosAlbum 在相机胶卷中创建黑色缩略图

Posted

技术标签:

【中文标题】UIImageWriteToSavedPhotosAlbum 在相机胶卷中创建黑色缩略图【英文标题】:UIImageWriteToSavedPhotosAlbum creates black thumbnail in camera roll 【发布时间】:2010-05-15 14:19:13 【问题描述】:

我正在使用 UIImageWriteToSavedPhotosAlbum 将图像保存在相机胶卷中,但即使图片正确,也总是得到黑色缩略图。

你有解决这个问题的指针吗?

提前感谢您的帮助。

问候,

【问题讨论】:

【参考方案1】:

我遇到了同样的问题。在 UIGraphicsImageContext 中绘制图像解决了这个问题:



  CGRect rect = CGRectMake(0,0,100,100);
  UIImage *image = ((put here your image));

  UIGraphicsBeginImageContext(rect.size);
  [image drawInRect:rect];
  UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
  UIGraphicsEndImageContext();  

  UIImageWriteToSavedPhotosAlbum(
      result, self, @selector(image:didFinishSavingWithError:contextInfo:),nil);

【讨论】:

以上是关于UIImageWriteToSavedPhotosAlbum 在相机胶卷中创建黑色缩略图的主要内容,如果未能解决你的问题,请参考以下文章