使用 ALAssetLibrary 快速了解图像资源是横向还是纵向?
我使用 ALAssetLibrary 获取资产。有没有办法知道这个图像是风景还是肖像没有加载图像但只有资产?
[资源缩略图]返回(75,75)大小的图像,所以它没有帮助。
加载全屏或全分辨率图像并比较其宽度和高度是重。
要加载元数据,比pixelHeight和Width还重。
有人可以帮忙吗?
I get asset using ALAssetLibrary. Is there way to know is this image landscape or portrait not loading the image but having only asset?
[asset thumbnail] returns (75,75) size image,so its doesn't help.
To load fullScreen or fullResolution image and compare its width and height is to heavy.
To load metadata and than pixelHeight and Width is also heavy.
So can someone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ALAssetRepresentation 的定向方法(自 iOS 4.0 起可用)。
所以你的电话会是这样的。
ALAssetOrientation 方向 = [[asset defaultRepresentation] 方向];
这个调用的性能应该很好。
干杯,
亨德里克
You can use the orientation method of ALAssetRepresentation (available since iOS 4.0).
So your call would be something like this.
ALAssetOrientation orientation = [[asset defaultRepresentation] orientation];
The performance of this call should be fine.
Cheers,
Hendrik