ImageManipulator android compression

I’m trying to manipulate an image with Expo.ImageManipulator. It works very well for iOS, but very poor in android.

Code example:

const actions = [{ crop: { originX: 0, originY: 0, width: 400, height: 400 } }, { resize: { width: 256, height: 256 } }]
const saveOptions = { format: 'png', compress: 1 }
const result = await ImageManipulator.manipulateAsync('imageUri.png', actions, saveOptions)

How to solve it?

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.