0
我正在使用Apple的AVCam source code來創建自定義相機,其工作方式類似於魅力,問題是一旦我用它拍攝了視頻或圖像,然後將其檢入照片庫的方向改變爲風景(即使我以縱向拍攝它)。我爲此搜尋了很多,但無法找到一個方法。任何幫助?將視頻或圖像的方向改爲AVCam的人像
對於筆記,我的應用程序只支持肖像和只應在肖像捕捉。
更新:
AVCaptureConnection *captureConnection = ...
if ([captureConnection isVideoOrientationSupported])
{
AVCaptureVideoOrientation orientation = AVCaptureVideoOrientationPortrait;
[captureConnection setVideoOrientation:orientation];
}
這是行不通的。