I want that my camera to capture specified size of images, I am opening camera in my application using Camera Intent in android. please give me guide lnes
Thanks
I want that my camera to capture specified size of images, I am opening camera in my application using Camera Intent in android. please give me guide lnes
Thanks
try to set setPictureSize on the camera parameters
Parameters parameters = camera.getParameters();
parameters.set("jpeg-quality", 70);
parameters.setPictureFormat(PixelFormat.JPEG);
parameters.setPictureSize(2048, 1232);
camera.setParameters(parameters);
Check this: Camera intent with resolution parameters in Android
Use Camera.Size to specify the dimensions for pictures:
http://developer.android.com/reference/android/hardware/Camera.Size.html
Possibly, you may need to crop the image to be captured by your camera if not fitted: