react-native-vision-camera/package/ios/Extensions/AVCapturePhotoOutput+mirror.swift

21 lines
439 B
Swift
Raw Normal View History

2021-02-19 08:28:05 -07:00
//
// AVCapturePhotoOutput+mirror.swift
// mrousavy
2021-02-19 08:28:05 -07:00
//
// Created by Marc Rousavy on 18.01.21.
// Copyright © 2021 mrousavy. All rights reserved.
2021-02-19 08:28:05 -07:00
//
import AVFoundation
extension AVCapturePhotoOutput {
2021-03-09 02:53:29 -07:00
func mirror() {
connections.forEach { connection in
if connection.isVideoMirroringSupported {
connection.automaticallyAdjustsVideoMirroring = false
2021-03-09 02:53:29 -07:00
connection.isVideoMirrored = true
}
2021-02-19 08:28:05 -07:00
}
2021-03-09 02:53:29 -07:00
}
2021-02-19 08:28:05 -07:00
}