Android camera supported picture sizes

前端 未结 4 1242
难免孤独
难免孤独 2020-12-14 20:32

I am trying to retrieve the available camera image sizes, so I able to adjust the camera to my preferred image resolution.

To retrieve the Android camera size I\'ve

4条回答
  •  忘掉有多难
    2020-12-14 20:55

    Camera camera = Camera.open();
    Parameters params = camera.getParameters();
    List sizes = params.getSupportedPictureSizes();
    for (int i=0;i

    You have to take height and width from one size object

提交回复
热议问题