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