React Native Retrieve Actual Image Sizes

后端 未结 4 1422
孤城傲影
孤城傲影 2020-12-24 04:56

I would like to be able to know the actual size of a network-loaded image that has been passed into I have tried using onLayout to

4条回答
  •  [愿得一人]
    2020-12-24 05:43

    You can use resolveAssetSource method from the Image component :

    import picture from 'pathToYourPicture';  
    const {width, height} = Image.resolveAssetSource(picture);
    

提交回复
热议问题