I am going to rotate the image in react–native and I would to get base64 of rotated image. I used several libraries
react-native-image-rotate
: It's working well on Android but on iOS I getrct-image-store://1
as url so I tried to get base64 usingrn-fetch-blob
but it is throwing error about can't recognize that url.react-native-image-resizer
: I used this but the response is not good in iOS. If I set -90 then rotate -180, if I set -180 then it's rotating as -270.
Please help me on this problem, how can I rotate the image in iOS.
I need to rotate image as -90, -180, -270, -360(original).