画像または画像が保存されているビューのスクリーンショットを撮るだけで、回転または反転されているかどうかにかかわらず、そのまま保存されます....ここにいくつかのコードが提供されています....
-(IBAction)saveToPhotoGallery:(id)sender
{
UIGraphicsBeginImageContext(baseView.frame.size);
[baseView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *attachimage = [[UIImage alloc]initWithData:Data];
UIImage *viImage=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
attachimage = viImage;
UIImageWriteToSavedPhotosAlbum(viImage, nil, nil, nil);
UIAlertView *alert=[[UIAlertView alloc] initWithTitle:@"Save" message:@"Saved to photo gallery" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil,nil];
[alert show];
}
}
お役に立てれば !!!