有没有办法获得非方形的 ALAsset 缩略图?
我注意到在使用苹果的照片应用程序时 - 快速滚动(在非网格模式下)时,照片的质量较低,一段时间后它们会被更高质量的图像取代。显然这是由于性能原因而完成的。
为了模仿照片应用程序,我使用了 asset.thumbnail,但是提供的缩略图是方形的,并且 asset.defaultRepresetnation.fullScreenImage/fullResolution 需要花费大量时间来加载。
还有其他办法吗?
I've noticed when using the Apple's photos app - while scrolling fast (in non-grid mode) the photos appear in a lower quality and after some time they are replaced with a higher quality image. Obviously it is done due to Performance reasons.
Trying to mimic the photos app I used the asset.thumbnail
, however the thumbnail provided is squared and asset.defaultRepresetnation.fullScreenImage/fullResolution
takes a lot of time to load.
Any other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有。从 ios 5 开始,您可以调用
ALAsset
的aspectRatioThumbnail
方法来完成此操作。Yes, there is. Starting in ios 5 you can call the method
aspectRatioThumbnail
ofALAsset
to accomplish this.