takePictureAsync is too too too slow

I try to use takePictureAsync to capture photo. It takes almost 5-10 second to capture image and return the captured image data.

 const options = {
      quality: 0.2,
      base64: true,
      skipProcessing: true,
      // displaySize: { width: 150, height: 150 },
    };
//starts
cameraRef.current.takePictureAsync(options).then((photo) => {
       //takes almost max 10 second sometime
      });

Is this expo default behavior to capture image or is I am missing something ?

  1. SDK Version: 37
  2. Platforms: Android/iOS

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