Hi
I want to display video with low resolution and capture image with the camera's highest resolution.
I used this code but the image was captured from camera with low resolution.

Qt Code:
  1. var w=camera.viewfinder.resolution.width;
  2. var h=camera.viewfinder.resolution.height;
  3. setMaxResulotion();
  4. camera.imageCapture.capture()
  5. camera.viewfinder.resolution.width = w;
  6. camera.viewfinder.resolution.height = h;
To copy to clipboard, switch view to plain text mode