在ios中,使用ALAsset
,如何提前获得ALAsset
aspectRatioThumbnail
大小(高度和宽度)(无需将图片加载到某些UIImageview中)。我知道我可以使用维度属性获取完整图片的大小,但我该如何为aspectRatioThumbnail
执行此操作?
答案 0 :(得分:1)
您应该使用CGImageGetHeight
和CGImageGetWidth
方法获取aspectRatioThumbnail
尺寸,例如:
size_t height = CGImageGetHeight([asset aspectRatioThumbnail]);
size_t width = CGImageGetWidth([asset aspectRatioThumbnail]);
有关详情here。