ajith-ab / react-native-receive-sharing-intent

A React Native plugin that enables React Native apps to receive sharing photos, videos, text, urls or any other file types from another app
MIT License
305 stars 109 forks source link

Add image file information (width, height, file size) #46

Closed thomaschaaf closed 3 years ago

thomaschaaf commented 3 years ago

The width, height and file size of the image would be a great addition to have.

djuwon commented 3 years ago

You should be able to use react-native-fs and use stat. Or you can use Image.getSize() with the filepath to return width and height.