使用 ALAssetLibrary 快速了解图像资源是横向还是纵向?

发布于 2024-12-27 09:37:32 字数 306 浏览 1 评论 0原文

我使用 ALAssetLibrary 获取资产。有没有办法知道这个图像是风景还是肖像没有加载图像但只有资产?

[资源缩略图]返回(75,75)大小的图像,所以它没有帮助。

加载全屏全分辨率图像并比较其宽度和高度是

要加载元数据,比pixelHeightWidth还重。

有人可以帮忙吗?

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 技术交流群。

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

发布评论

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

评论(1

你是年少的欢喜 2025-01-03 09:37:32

您可以使用 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

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