0

我想将base64图片转换为手机以保存我的数据库,我在本地图库中选择我的应用程序,获取我的数据,例如=>

>     filename: "IMG_0005.JPG"
>     height: 2002
>     isStored: true
>     playableDuration: 0
>     uri: "assets-library://asset/asset.JPG?id=ED7AC36B-...-B6D696F4F2ED&ext=JPG"
>     width: 3000

我希望 ios 和 android 也能运行,我尝试了很多库,大多数库都支持 ios,你知道任何有用的代码来反应原生库或其他想法吗?

我找到了解决方案

- 编辑 -

import {
  Image,
  ImageStore,
  ImageEditor,
} from 'react-native';

Image.getSize(image.uri, (width, height) => {
  let imageSettings = {
    offset: { x: 0, y: 0 },
    size: { width: width, height: height }
  };
  ImageEditor.cropImage(image.uri, imageSettings, (uri) => {
    ImageStore.getBase64ForTag(uri, (data) => {
        console.log('base64 ==> ',data)
    }, e => console.warn("getBase64ForTag: ", e))
  }, e => console.warn("cropImage: ", e))
})
4

0 回答 0