何が間違っているのかわかりませんが、アプリを使用して撮ったばかりの画像を表示すると、画像が元の画像の特定の場所にズームインされ、その理由がわかりません。
画像を読み込んで表示するための私のコードを次に示します。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:imageName];
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:path]];
imageView.contentMode = UIViewContentModeScaleAspectFill;