在我的应用中,我需要保存图像。即使设备处于横向模式,我也需要将图像保存为纵向。我正在检查设备是否处于横向模式,如果是,我想在将图像保存为PNG之前旋转图像。任何人都可以帮我解决这个问题吗?
-(void) saveImage {
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
if (UIInterfaceOrientationIsLandscape([[UIDevice currentDevice] orientation])) {
//// need to rotate it here
}
NSData *data = UIImagePNGRepresentation (viewImage);
[data writeToFile:savePath atomically:YES];
}