ImageManipulator.manipulate() not working on expo v32.0.0

hello,

resizeImage = async uri => {
const manipResult = await ImageManipulator.manipulate(
uri,
[{ resize: { width: 300, height: 300 } }],
{ format: “png”, base64: false }
);

this.props.getTakenPic(manipResult.uri);

};

returns undefined function

1 Like

i found the solution
replacing manipulate() with manipulateAsync()

1 Like