ios - 相机预览上的 SwiftUI 位置叠加

标签 ios xcode camera swiftui uiimagepickercontroller

我正在尝试在使用
某些设备上的肖像和其他设备上的风景。我可以手动设置坐标但是
一直无法获得相机预览帧的正确坐标。

这是一个 SwiftUI 应用程序,所以我正在做相机工作
UIViewController 可表示。这就是我所拥有的,显然,目标圈是
当设备和/或方向改变时总是错误的。我似乎无法捕捉
相机预览所在的模态视图的框架。我愿意成为
能够在模态视图上指定相机预览的框架和位置。

struct CaptureImageView: View {
    @Binding var isShown: Bool
    @Binding var image: Image?
    @Binding var newUIImage: UIImage?
    @Binding var showSaveButton: Bool

    func makeCoordinator() -> Coordinator {
        return Coordinator(isShown: $isShown, image: $newUIImage, showSaveButton: $showSaveButton)
    }
}

extension CaptureImageView: UIViewControllerRepresentable {

    func makeUIViewController(context: UIViewControllerRepresentableContext<CaptureImageView>) -> UIImagePickerController {

        let vc = UIImagePickerController()

        if UIImagePickerController.isSourceTypeAvailable(UIImagePickerController.SourceType.camera) {
            vc.sourceType = .camera
            vc.allowsEditing = true
            vc.delegate = context.coordinator

            let screenSize: CGRect = UIScreen.main.bounds
            let screenWidth = screenSize.width
            let screenHeight = screenSize.height

            vc.cameraOverlayView = CircleView(frame: CGRect(x: (screenWidth / 2) - 50, y: (screenWidth / 2) + 25, width: 100, height: 100))

            return vc
        }
        return UIImagePickerController()
    }

    func updateUIViewController(_ uiViewController: UIImagePickerController, context: UIViewControllerRepresentableContext<CaptureImageView>) {
    }
}

这是想法 - 但目标始终需要居中:

enter image description here

和目标文件:
class CircleView: UIView {

    override init(frame: CGRect) {
        super.init(frame: frame)
        self.backgroundColor = UIColor.clear
    }

    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    override func draw(_ rect: CGRect) {
        if let context = UIGraphicsGetCurrentContext() {
            context.setLineWidth(3.0)
            UIColor.red.set()

            let center = CGPoint(x: frame.size.width / 2, y: frame.size.height / 2)
            let radius = (frame.size.width - 10) / 2

            context.addArc(center: center, radius: radius, startAngle: 0.0, endAngle: .pi * 2.0, clockwise: true)
            context.strokePath()
        }
    }
}

任何指导将不胜感激。 Xcode 版本 11.3.1 (11C504)

最佳答案

虽然我仍然想找到获取相机框架的方法的答案 - 我的目标主要可以通过在 ZStack 中创建一个圆形 View 来实现,将相机 View 放在我在 SwiftUI 中的圆形 View 后面,如下所示:

if showCaptureImageView {
    ZStack {
        CaptureImageView(isShown: $showCaptureImageView, image: $myImage, newUIImage: $newUIImage, showSaveButton: $showSaveButton)
        
        Circle()
            .stroke(Color.red, style: StrokeStyle(lineWidth: 10 ))
            .frame(width: 100, height: 100)
            .offset(CGSize(width: 0, height: -50.0))
    }
}//if show

关于ios - 相机预览上的 SwiftUI 位置叠加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60049894/

相关文章:

iphone - 监视区域但位置图标在应用程序被杀死时消失

ios - WKWebView - 如何获取我们刚刚触摸的输入类型的属性

ios - 在 iOS 中请求相机权限对话框启动(主要权限)

ios - iOS:除非将区域设置为印度,否则印地语语言本地化将不起作用

android - 是否有机会通过访问 Android NDK 相机来减少快门时间?

android - 如何使用android相机找到物体的真实宽度和高度?

ios - 如何使用 NSManagedObject 对象在 View Controller 之间传递自定义属性?

iphone - 如何在 UIView 中添加带坐标的图像?

xcode - NSUserDefaults、UISwitch 和设置默认值

ios - Xcode 6 无法启动 (OS X 10.9.4)