gpt4 book ai didi

android - 如何使用相机 Action Intent 在保存时减小相机图片的大小?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:44:38 24 4
gpt4 key购买 nike

如何在保存时缩小相机图片的大小,使用相机 Action 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);

但这似乎行不通。

这样做的有效方法是什么?

最佳答案

这在 Android 上是不可能的。 ACTION_IMAGE_CAPTURE 只能与 MediaStore.EXTRA_OUTPUT 一起使用,不能与其他三个 extras 一起使用。

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

关于android - 如何使用相机 Action Intent 在保存时减小相机图片的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14142409/

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