How to check the quality of image in react native like if I want to take 60%. Quality image so how to get it
I tried it through pixel resolution but it didn’t work
How to check the quality of image in react native like if I want to take 60%. Quality image so how to get it
I tried it through pixel resolution but it didn’t work
2
Answers
If you are using
react-native-image-picker
for uploading images, you can set maxWidth, maxHeight or quality of image for reducing the size in options.Or if you want to fit in the image in any
View
you can useresizeMode
property ofImage
which has the typeenum('cover', 'contain', 'stretch', 'repeat', 'center')
.you can user react-native-image-picker library and can restrict user for image quality to upload and you can edit rest of the parameters on the basis of your requirements.