I am using UIImagePickerController
for taking photo. For full size photo I am using this method
var cameraAspectRatio : CGFloat = 4.0 / 3.0;
var imageWidth = floorf(Float(screenSize.width * cameraAspectRatio));
var data = Float(screenSize.height)/imageWidth
var scale = CGFloat(ceilf((data * 10.0) / 10.0))
cameraViewTransform = CGAffineTransformMakeScale(scale, scale)
but after capturing image, the view that I saw in camera layer is different with photo(photo takes more view in, so it is bigger)
I want to make a photo, and output photo the same scale and view, using the whole fullscreen overlay. Can you advice some?