Android 中的 Jpeg 压缩质量

发布于 2024-10-27 12:08:24 字数 641 浏览 6 评论 0原文

我正在启动图像捕获意图来拍照,添加 uri,以便图片很小。我的问题是我想在开始活动之前设置输出 jpeg 质量。

ContentValues vals = new ContentValues();
vals.put(Media.DISPLAY_NAME, "test title");
vals.put(Media.MIME_TYPE, "image/jpeg");

Uri imageFileUri = context.getContentResolver()
    .insert(Media.EXTERNAL_CONTENT_URI, vals);

Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); 
i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, imageFileUri); 

context.startActivityForResult(i, CameraImportActivity.CAMERA_REQUEST);

我想我可以在拍照后进行下采样,但如果我可以请求该活动为我做这件事,我愿意这样做。

作为额外问题,我如何更改在图库中保存的相册,以及如何防止相机活动在默认位置保存副本(在我的手机上是“照片”)

I am launching the image capture intent to take a picture, adding a uri so the picture is tiny. My problem is I want to set the output jpeg-quality before I start the activity.

ContentValues vals = new ContentValues();
vals.put(Media.DISPLAY_NAME, "test title");
vals.put(Media.MIME_TYPE, "image/jpeg");

Uri imageFileUri = context.getContentResolver()
    .insert(Media.EXTERNAL_CONTENT_URI, vals);

Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); 
i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, imageFileUri); 

context.startActivityForResult(i, CameraImportActivity.CAMERA_REQUEST);

I suppose I could downsample after the picture is taken, but if I can request the activity do it for me I would like to do so.

As bonus questions, how do I change the album they get saved to in the gallery, and how do I prevent the camera activity from saving a copy in the default location (on my phone it is "photos")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文