如何使用相机动作意图在保存时减小相机图片的尺寸?

Sha*_*Adi 12 android android-intent

如何使用相机动作意图在保存时减小相机图片的大小.

我试图在相机动作的putExtra中使用MediaStore.EXTRA_SIZE_LIMIT,如下所示:

Intent captureintent =  new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);  
captureintent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
captureintent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0);
captureintent.putExtra(MediaStore.EXTRA_SCREEN_ORIENTATION, 0);
captureintent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, The Value to be Kept);
Run Code Online (Sandbox Code Playgroud)

但这似乎不起作用.

有效的方法是什么?

Ada*_*äck 7

这在Android上是不可能的.ACTION_IMAGE_CAPTURE只能用于MediaStore.EXTRA_OUTPUT,而不是其他三个额外.

请参阅http://developer.android.com/reference/android/provider/MediaStore.html.