How do I reduce the picture dimension taken in Android? By Default whenever I take a picture, the dimension is 2048x1536.
Camera.Parameters parameters = camera.getParameters();
parameters.setPictureSize(1028, 768);
This is how I should do it?
How do I reduce the picture dimension taken in Android? By Default whenever I take a picture, the dimension is 2048x1536.
Camera.Parameters parameters = camera.getParameters();
parameters.setPictureSize(1028, 768);
This is how I should do it?