У меня есть такой фрагмент кода
takePicture = async function() {
if (this.camera) {
this.camera
.takePictureAsync()
.then(data => {
FileSystem.moveAsync({
from: data.uri,
to: `${FileSystem.documentDirectory}photos/Photo_${
this.state.photoId
}.jpg`
}).then(() => {
this.setState({
photoId: this.state.photoId + 1
});
Vibration.vibrate();
});
});
}
};
Теперь моя проблема в том, что я не знаю, как вставить ImageManipulator в эту функцию.Моя цель после того, как takePictureAsync (), размер фотографии будет изменен до 108x192, затем эта фотография будет перемещена в documentDirectory.Большое спасибо