Is your feature request related to a problem? Please describe.
in my app, depending on the user settings, i need to be able to take photos with a certain width or height. later, these photos are being uploaded, and if the size is too large, uploads become an issue for the users. currently, there is not a way to set image size while taking photos with the react-native-camera-kit.
also, how is the dimension of the image being determined currently? is it set to some default value?
Describe the solution you'd like
is it possible for you to provide an option to set the the images size in pixels.
Describe alternatives you've considered
i tried to resize the image after being capturing it with react-native-camera-kit, but this increases the image processing time unreasonably. besides, there are not any maintained/reliable libraries doing this (there are those that resize images picked from gallery, but for that the user needs to open the gallery and add from there, they do not do it in the background).
Additional context
i am migrating from react-native-camera, because it is not maintained anymore. this used to be a feature in the react-native-camera where it was possible to pass width as a parameter to the takePictureAsync function.
Is your feature request related to a problem? Please describe.
in my app, depending on the user settings, i need to be able to take photos with a certain width or height. later, these photos are being uploaded, and if the size is too large, uploads become an issue for the users. currently, there is not a way to set image size while taking photos with the react-native-camera-kit.
also, how is the dimension of the image being determined currently? is it set to some default value?
Describe the solution you'd like
is it possible for you to provide an option to set the the images size in pixels.
Describe alternatives you've considered
i tried to resize the image after being capturing it with react-native-camera-kit, but this increases the image processing time unreasonably. besides, there are not any maintained/reliable libraries doing this (there are those that resize images picked from gallery, but for that the user needs to open the gallery and add from there, they do not do it in the background).
Additional context
i am migrating from react-native-camera, because it is not maintained anymore. this used to be a feature in the react-native-camera where it was possible to pass width as a parameter to the takePictureAsync function.