捕获显示横向方向的UIimage视图中的图像存储

时间:2011-01-11 11:10:50

标签: iphone ipod

我为camara应用程序编写了代码。视图有一个按钮和一个UIimageview。当我点击相机时,相机将在捕获图像后打开,当我点击使用按钮时,它仅显示在UIimageview的一些部分,也是横向方向。

1 个答案:

答案 0 :(得分:-1)

CGSize size=CGSizeMake(editView.bounds.size.width,editView.bounds.size.height);
UIGraphicsBeginImageContext(size);
[editView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImageCaptureSend = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImageCapture, nil, nil, nil);