我正在使用 expo API 处理 native 应用程序,该应用程序基本上拍摄一张照片,然后应用程序使用 ImageEditor.cropImage 裁剪它,最后将图片从缓存复制到另一个位置。编码:

  takePicture = async function() {
    if (this.camera) {
      this.camera.takePictureAsync().then(async (data) => {

        cropdata = {
          offset:{x:0, y:0},
          size:{width:100, height:100},
        };

        await ImageEditor.cropImage(
          data.uri,
          cropdata,
          async (uri) => {
            FileSystem.moveAsync({
              from: uri,
              to: `${FileSystem.documentDirectory}photos/Photo_${this.state.photoId}.jpg`,
            }).then(() => {
              this.setState({
                photoId: this.state.photoId + 1,
              });
              Vibration.vibrate();
            });
          },
          (error) => {
            console.log(error);
          }
        );

      });
    }
  };

但显示以下错误:



任何想法?

最佳答案

Expo 的 FileSystem 模块可以复制/移动/等。之前保存在应用范围内的文件(例如通过 ImagePicker 或使用 Asset.loadAsync)。 ImagerEditor 是 React Native 的核心功能,它将您的图像保存到 Expo 范围之外的文件中,因此 FileSystem 无法对该文件执行操作。可以在这里找到更多关于此的信息:

https://forums.expo.io/t/where-does-camera-takepictureasync-save-photos/6475/7

所以不要使用 ImageEditor.cropImage() ,而是应该使用 expo ImageManipulator

关于javascript - Expo FileSystem.moveAsync 位置不可移动?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48302572/

10-13 00:29