如何在android中使用相机捕获自定义尺寸的图像?

发布于 2024-11-02 21:39:39 字数 80 浏览 2 评论 0原文

如何在android中捕捉方形图像? 我想在android中通过intent调用Camera来捕获方形图像(例如300x300像素),我该怎么做?

How to capture an square image in android?
I want to capture an square image (such as 300x300 pixel) by calling Camera through intent in android, how can I do this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眉目亦如画i 2024-11-09 21:39:39

编辑:
自 API 级别 21 起已弃用。

使用 Camera.Size 嵌套类

http: //developer.android.com/reference/android/hardware/Camera.Size.html

来自 android 参考:

http://developer.android.com/reference/android/hardware/Camera.html

课程概述

Camera 类用于设置图像捕获设置、开始/停止预览、拍照以及检索视频编码帧。此类是相机服务的客户端,它管理实际的相机硬件。

确保相机支持该尺寸(很可能不支持)。如果没有,请以最接近的分辨率拍摄照片并裁剪或调整其大小。

Camera myCamera = Camera.open(0);
List<Camera.Size> sizes = myCamera.getPArameters().getSupportedPictureSizes();

要了解相机意图,请检查 SO 中已有的这些问题:

Android 相机意图

相机意图android

EDIT:
This is deprecated since API level 21.

Use the Camera.Size nested class

http://developer.android.com/reference/android/hardware/Camera.Size.html

From the android reference:

http://developer.android.com/reference/android/hardware/Camera.html

Class Overview

The Camera class is used to set image capture settings, start/stop preview, snap pictures, and retrieve frames for encoding for video. This class is a client for the Camera service, which manages the actual camera hardware.

Make sure that the size is supported by the camera (and most probably it won't). If not, take a picture at the closest resolution and crop it or resize it.

Camera myCamera = Camera.open(0);
List<Camera.Size> sizes = myCamera.getPArameters().getSupportedPictureSizes();

To learn about camera intents, check these questions already in SO:

Android camera intent

Camera intent android

空城缀染半城烟沙 2024-11-09 21:39:39

为什么没有人提到这样的事情?

Bitmap resultBitmap = Bitmap.createBitmap(sourceBitmap, xStart, yStart, 300, 300);

其中 sourceBitmap 是相机的原始捕获,以及裁剪开始处的 xStartyStart 位置。结果的左上角应有 xStartyStart

Why nobody mentioned something like this?

Bitmap resultBitmap = Bitmap.createBitmap(sourceBitmap, xStart, yStart, 300, 300);

where sourceBitmap is original capture from camera and xStart and yStart location from where cropping will start. The result should have xStart, yStart in top left corner.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文