gpt4 book ai didi

android - 从相机拍摄时裁剪图像问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:39:09 26 4
gpt4 key购买 nike

下面是我的相关代码 fragment ,其中在从相机拍摄照片后重定向到设备的裁剪应用。我通常遵循这个 example .但是在从相机拍摄的照片到在裁剪应用程序中提供照片之间的阶段/时刻,它显示持续加载并使我的应用程序 react 迟钝。如果这种情况至少发生一次,每次我打开应用程序时,它只会显示正在加载。

此问题不会发生在一个场景--> 当我不移动我的设备时(即,仅当没有屏幕方向发生时)。有人可以建议我避免这个问题吗?

public void shotFromCamera(View view)
{
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, imageCaptureUri);

try {
intent.putExtra("return-data", true);

startActivityForResult(intent, PICK_FROM_CAMERA);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
}
}

protected void onActivityResult(int requestCode, int resultCode,Intent data)
{
super.onActivityResult(requestCode, resultCode, data);

if(resultCode==RESULT_OK && requestCode == PICK_FROM_CAMERA){

doCrop();
} else if(resultCode == RESULT_OK && requestCode == CROP_FROM_CAMERA)
{
Bundle extras = data.getExtras();

if (extras != null) {
Bitmap photoBitmap = extras.getParcelable("data");

imageView.setImageBitmap(photoBitmap);
if(mImageCaptureUri != null)
{
File f = new File(mImageCaptureUri.getPath());
if (f.exists()) f.delete();
}

mImageCaptureUri = Uri.fromFile(new File(Environment.getExternalStorageDirectory()+ "/MyApp",
"avatar" + String.valueOf(System.currentTimeMillis()) + ".jpg"));
File file = new File(mImageCaptureUri.getPath());

selectedImagePath = mImageCaptureUri.getPath();
Log.d("pic1 ","pic to be created: "+selectedImagePath);
OutputStream fOut = null;

try {
fOut = new FileOutputStream(file);
photoBitmap.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
fOut.flush();
fOut.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch(IOException e)
{
e.printStackTrace();
}

}


}
}

private void doCrop() {
final ArrayList<CropOption> cropOptions = new ArrayList<CropOption>();
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setType("image/*");

List<ResolveInfo> list = getPackageManager().queryIntentActivities( intent, 0 );

int size = list.size();

if (size == 0) {
Toast.makeText(this, "Can not find image crop app", Toast.LENGTH_SHORT).show();

return;
} else {
intent.setData(imageCaptureUri);

intent.putExtra("outputX", 200);
intent.putExtra("outputY", 200);
intent.putExtra("aspectX", 1);
intent.putExtra("aspectY", 1);
intent.putExtra("scale", true);
intent.putExtra("return-data", true);

if (size == 1) {
Intent i = new Intent(intent);
ResolveInfo res = list.get(0);

i.setComponent( new ComponentName(res.activityInfo.packageName, res.activityInfo.name));

startActivityForResult(i, CROP_FROM_CAMERA);
}
}

为了澄清我的问题,我按原样运行了那个例子中的源代码,同样的问题发生了。我已经运行了其他几个重定向到裁剪应用程序的示例。在上述解释的阶段改变方向时会发生同样的问题。

P.S:如果有人有即使在方向改变时也能正常工作的工作示例,我很乐意接受它作为答案。

最佳答案

你可以用这个 -

  1. 从指定的 URI 获取位图,即使用全尺寸图像

    photo = android.provider.MediaStore.Images.Media.getBitmap(cr, Uri.fromFile(imageCaptureUri));

  2. 在压缩图像时使用 Bitmap.CompressFormat.PNG

  3. 使用

    创建缩放位图

    photo= Bitmap.createScaledBitmap(background, YourWidth, YourHeight, true);

  4. 这是您的缩放(裁剪)图像。

关于android - 从相机拍摄时裁剪图像问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17939606/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com