使用 ALAsset 设置 UIImageView

发布于 2024-10-18 12:33:41 字数 80 浏览 5 评论 0原文

我有一个 UIImageView 并想将其设置为 ALAsset 的内容。

ALAssets 内容如何用于设置 UIImage?

I have a UIImageView and would like to set it to the contents of an ALAsset.

How is the ALAssets contents used to set a UIImage?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

守不住的情 2024-10-25 12:33:41

试试这个。顺便说一句,资产是 ALAsset。

UIImage *image = [UIImage imageWithCGImage:[asset thumbnail] scale:1.0 orientation:[[asset defaultRepresentation] orientation]]

UIImageView *image_view = [[UIImageView alloc] initWithImage:image]

Try this. Asset is ALAsset by the way.

UIImage *image = [UIImage imageWithCGImage:[asset thumbnail] scale:1.0 orientation:[[asset defaultRepresentation] orientation]]

UIImageView *image_view = [[UIImageView alloc] initWithImage:image]
橙幽之幻 2024-10-25 12:33:41

正如 Clayton 和 Aaron Brager 所提到的,关键是 UIImage 类的 imageWithCGImage 方法。

有两种方法获取图像内容:

  • asset.thumbnail 或 asset.aspectThumbnail
  • 通过资产的呈现
    • 有默认呈现和UTI呈现
    • CG图像已准备好
      • CGImageWithOptions、fullResolutionImage、fullScreenImage
    • 原始数据
      • getBytes:fromOffset:length:错误:
      • (如果您想保留 EXIF 等,请使用 imageWithData 而不是 imageWithCGImage)

你可以参考 http://developer.apple.com/library/ios/#documentation/AssetsLibrary/Reference /ALAssetRepresentation_Class/Reference/Reference.html#//apple_ref/doc/c_ref/ALAssetRepresentation 了解更多详细信息。

As mentioned by Clayton and Aaron Brager, the key is imageWithCGImage method of UIImage class.

There are a two ways to get image content:

  • asset.thumbnail or asset.aspectThumbnail
  • via a presentation of the asset
    • there are default presentation and presentation for UTI
    • CGImage prepared
      • CGImageWithOptions, fullResolutionImage, fullScreenImage
    • raw data
      • getBytes:fromOffset:length:error:
      • (if you want to keep EXIF etc, use imageWithData instead of imageWithCGImage)

You may refer http://developer.apple.com/library/ios/#documentation/AssetsLibrary/Reference/ALAssetRepresentation_Class/Reference/Reference.html#//apple_ref/doc/c_ref/ALAssetRepresentation for more details.

(り薆情海 2024-10-25 12:33:41
ALAssetRepresentation *rep = [self defaultRepresentation];
UIImage *image = [UIImage imageWithCGImage:[rep fullScreenImage]];
ALAssetRepresentation *rep = [self defaultRepresentation];
UIImage *image = [UIImage imageWithCGImage:[rep fullScreenImage]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文