在 android 中拍照后如何消除延迟?
How to Remove the Lag after taking a picture in android?
我正在使用以下代码保存来自相机意图的图片。但是当我与应用程序交互时,在单击“确定”接受图片后,它们的接缝成为优化问题,对于 3.8Mb 大的图片需要 5 秒。
将相机中的图像保存到目录:
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (intent.resolveActivity(getPackageManager()) != null) {
File outputFile = null;
try {
outputFile = createImageFile();
} catch (IOException e) {
e.printStackTrace();
}
Uri photoURI = FileProvider.getUriForFile(this,
"com.example.mohammad.fileprovider",
outputFile);
intent.putExtra(MediaStore.EXTRA_OUTPUT,photoURI);
startActivityForResult(intent, CAPTURE_CODE);
}
创建镜像函数代码:
private File createImageFile() throws IOException {
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp;
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File outputFile = File.createTempFile(
imageFileName,
".jpg",
storageDir
);
mCurrentPhotoPath = outputFile.getAbsolutePath();
SharedPreferences sp = getSharedPreferences("CloudApp",0);
SharedPreferences.Editor editor = sp.edit();
editor.putString("lastImagePath",mCurrentPhotoPath);
editor.apply();
return outputFile;
}
您应该使用另一个 Thread 或 AsyncTask 以较小的延迟做图像保存背景,而不会中断用户体验。我使用 AsyncTask 来保存图像,即使是 4k 分辨率大约 7mb。这需要一段时间才能完成,但您不会停止 UI 和相机线程。
我正在使用以下代码保存来自相机意图的图片。但是当我与应用程序交互时,在单击“确定”接受图片后,它们的接缝成为优化问题,对于 3.8Mb 大的图片需要 5 秒。
将相机中的图像保存到目录:
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (intent.resolveActivity(getPackageManager()) != null) {
File outputFile = null;
try {
outputFile = createImageFile();
} catch (IOException e) {
e.printStackTrace();
}
Uri photoURI = FileProvider.getUriForFile(this,
"com.example.mohammad.fileprovider",
outputFile);
intent.putExtra(MediaStore.EXTRA_OUTPUT,photoURI);
startActivityForResult(intent, CAPTURE_CODE);
}
创建镜像函数代码:
private File createImageFile() throws IOException {
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp;
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File outputFile = File.createTempFile(
imageFileName,
".jpg",
storageDir
);
mCurrentPhotoPath = outputFile.getAbsolutePath();
SharedPreferences sp = getSharedPreferences("CloudApp",0);
SharedPreferences.Editor editor = sp.edit();
editor.putString("lastImagePath",mCurrentPhotoPath);
editor.apply();
return outputFile;
}
您应该使用另一个 Thread 或 AsyncTask 以较小的延迟做图像保存背景,而不会中断用户体验。我使用 AsyncTask 来保存图像,即使是 4k 分辨率大约 7mb。这需要一段时间才能完成,但您不会停止 UI 和相机线程。