使用 ALAssetsLibrary 获取缩略图的最佳方式

发布于 2024-12-15 07:43:45 字数 156 浏览 1 评论 0原文

我正在处理 ALAssetsLibrary。 当我获得所有缩略图时,我只需使用 UIImageViews 来保存缩略图并将它们添加到支架中。 问题就在这里,添加它们真的很慢。也许十秒或更长时间。如果照片多的话,速度会慢一些。

我想知道保存这些缩略图的最佳做法是什么。 (非常感谢!)

I am handling with the ALAssetsLibrary.
When I get all the thumbnails, I just use the UIImageViews to hold the thumbnails and add them to the holder.
Problem is here, it is really slow to add them. Maybe ten seconds or more. If there is much photos, it will be slower.

I would want to know what is the best practice to hold these thumbnails. (Many thanks!)

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

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

发布评论

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

评论(2

树深时见影 2024-12-22 07:43:45

使用 AlAsset aspectRatioThumbnail 代替 fullResolutionImage 以获得高性能

ALAsset 类有两种获取缩略图的方法:

- (CGImageRef)thumbnail
- (CGImageRef)aspectRatioThumbnail

示例:

//ALAssetsLibrary block will execute in a separate thread. So I suggest to do the UI related stuff in main thread.
dispatch_sync(dispatch_get_main_queue(), ^{

   CGImageRef iref = [myasset aspectRatioThumbnail];
   itemToAdd.image = [UIImage imageWithCGImage:iref];

 });//end block

Use AlAsset aspectRatioThumbnail instead of fullResolutionImage for high performance

The class ALAsset has two methods to get thumbnails:

- (CGImageRef)thumbnail
- (CGImageRef)aspectRatioThumbnail

example:

//ALAssetsLibrary block will execute in a separate thread. So I suggest to do the UI related stuff in main thread.
dispatch_sync(dispatch_get_main_queue(), ^{

   CGImageRef iref = [myasset aspectRatioThumbnail];
   itemToAdd.image = [UIImage imageWithCGImage:iref];

 });//end block
梦晓ヶ微光ヅ倾城 2024-12-22 07:43:45

我认为在这个 https://github.com/johnil/JFImagePickerController 项目中,有两个类 JFAssetHelper 和 JFImageManager 你会找到答案。这使用 NSCache 来缓存照片,而且速度非常快

I think in this https://github.com/johnil/JFImagePickerController project with two classes JFAssetHelper and JFImageManager you will find answer.This use NSCache to cache photos and it really quick

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文