I am making a Camera application with overlay frame. That's what I did:
- All navigation bar, tool bar and control buttons are hidden
- The preview rectangle is rescaled with the function self.cameraViewTransform = CGAffineTransformScale(self.cameraViewTransform, 1, 1.24299);
- The preview is set to Full Screen (640 x 960) with the above transformation
- Overlay Frame (320 x 480) is set in ImagePickerController's cameraOverlayView property
After picture is taken, here is what I did: - Resize and draw the taken image (1936 x 2592) to 640 x 960 in currentContext - Draw the overlay frame (320 x 480) to that 640 x 960 currentContext
But I found that: - scale is not that right - the frame appeared moved towards the top edge for about 2x pixels
Is there any hint/solution about this issue ?