我尝试在我的 android 应用程序中不使用本机相机应用程序拍照。我想将捕获的图片保存在单独的文件夹中。我从 onPictureTaken() 获取图像的字节数组。我想将这张图片保存到一个单独的文件夹中,并带有文件名。这怎么可能。我的代码片段如下:
mCamera.mCameraInstance.takePicture(null, null,
new Camera.PictureCallback() {
@Override
public void onPictureTaken(byte[] data, final Camera camera) {
byte[] capturedBytes=data;
}