在 ios 中, Using ALAsset
,如何ALAsset
aspectRatioThumbnail
提前获取大小(高度和宽度)(不将图像加载到某些 UIImageview 中)。我知道我可以使用尺寸属性获得完整图像的大小,但我该怎么做呢aspectRatioThumbnail
?
问问题
832 次
1 回答
1
您应该使用CGImageGetHeight
andCGImageGetWidth
方法来获取aspectRatioThumbnail
大小,例如:
size_t height = CGImageGetHeight([asset aspectRatioThumbnail]);
size_t width = CGImageGetWidth([asset aspectRatioThumbnail]);
更多信息在这里。
于 2013-12-11T16:39:48.203 回答