React Native Retrieve Actual Image Sizes

后端 未结 4 1431
孤城傲影
孤城傲影 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:31

    Image component now provides a static method to get the size of the image. For example:

    Image.getSize(myUri, (width, height) => {this.setState({width, height})});
    

提交回复
热议问题