react-native-image-base64 icon indicating copy to clipboard operation
react-native-image-base64 copied to clipboard

Simple react native library to convert an image to a base64 string 🌄

Results 16 react-native-image-base64 issues
Sort by recently updated
recently updated
newest added
trafficstars

` const base64 = await ImgToBase64.getBase64String(Platform.OS === 'android' ? uri : `file://${uri}`); ` After converting an image to base64, it rotates 90 degrees to left. There is no prop in...

This is my code: ```javascript import ImgToBase64 from 'react-native-image-base64'; sendData = async (uri) => { ImgToBase64.getBase64String(uri) .then(base64String => { console.log(base64String) }) .catch(err => console.log("Error Occured", err)); } someFunction = async...

Platform: android RN: 0.60.4 `ImgToBase64.getBase64String("file:///data/user/0/com.myapp/cache/1581517067881.JPEG")` return wrong base64 string.

I try to get a camera photo, or assets image from my src folder. How I get this images ?

`yarn install` ``` [!] CocoaPods could not find compatible versions for pod "React/Core": In Podfile: react-native-fetch-blob (from `../node_modules/react-native-fetch-blob`) was resolved to 0.10.6, which depends on React/Core None of your spec...

Fix the error while getting pod install for RN version 0.60+ `[!] The RNImgToBase64 pod failed to validate due to 1 error: - ERROR | attributes: Missing required attribute homepage`

Hi, Thanks a lot for the wonderful work. In the android, conversion is working fine(Can you please add the permission check, if the read external storage is not given), but...

Hi, after a fresh install of this library I am having issues building the Android app with the below message. One other developer is experiencing this as well. ``` npx...

I conversion .png to base64 , when i decoding base64 to png , the background is black

Thank you for supporting this library. When writing `RNImgToBase64.getBase64String('https://...')` the module returns a FileNotFoundException, not a content provider. This syntax works in IOS.