我遇到了一个问题,其中一些(但很奇怪,不是全部)被拍成肖像的图像在我的本机应用程序中显示为风景(逆时针旋转90度)。
其他信息:
CameraRoll
检索照片<Image>
模块我正在做的显示图片的代码片段:
CameraRoll.getPhotos({
first: 100,
assetType: 'Photos',
mimeTypes: ['image/jpeg', 'image/png']
}).then(r => {
this.setState(
{
'photos': r.edges,
'requesting_photos': false
}
);
})
...
// (using a flatlist)
_renderItem({item, index}) {
return (
<View style={{padding: 1, width: '25%'}}>
<Image
style={{flex: 1}}
source={{ uri: item.node.image.uri }}
fadeDuration={250}
/>
</View>
)
});
谢谢!