Hi,
I'm investigating whether 18MP photo capture from the front camera on iPhone 17 Pro is available to third-party apps using AVFoundation.
I first inspected all available AVCaptureDevice formats, but I could not find any format corresponding to ~18MP resolution (e.g., around 4896×3672).
for format in device.formats {
let desc = format.formatDescription
let dims = CMVideoFormatDescriptionGetDimensions(desc)
print("Format: (dims.width) x (dims.height)")
}
All reported formats appear to be limited to resolutions such as 4032×3024 (12MP) or below.
Question:
Is 18MP front camera capture actually available to third-party apps via AVFoundation on iPhone 17?
1
0
37