gpt4 book ai didi

ios - 如何缩放我的 imagePickerController 相机以使其填满整个屏幕?

转载 作者:行者123 更新时间:2023-11-28 08:54:46 25 4
gpt4 key购买 nike

我已经隐藏了我的相机控制,但是留下了一个很大的黑色空间。为了解决这个问题,我希望缩放我的相机以使其填满整个屏幕。我不知道为什么我不能这样做。这是我的代码。干杯!

imagePicker.sourceType = UIImagePickerControllerSourceType.Camera
imagePicker.delegate = self
imagePicker.allowsEditing = false
imagePicker.showsCameraControls = false
imagePicker.cameraOverlayView = overlayView
self.presentViewController(imagePicker, animated: false, completion: nil)

最佳答案

我相信相机的宽高比是 4/3,因此您必须应用变换比例才能使相机全屏显示。

let screenSize = UIScreen.mainScreen().bounds.size
let aspectRatio:CGFloat = 4/3
let scale = screenSize.height/screenSize.width * aspectRatio
self.imagePikerViewController.cameraViewTransform = CGAffineTransformMakeScale(scale, scale);

关于ios - 如何缩放我的 imagePickerController 相机以使其填满整个屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33373069/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com