本文介绍了为UIImagePickerController启用HDR选项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
甚至可以在应用程式内启用HDR选项吗?我假设它会在那里自动。我寻找额外的mediaTypes,认为也许kUTTypeHDRImage可能是一个选项,但没有这样的运气。它不是一个额外的源类型,也不能通过cameraCaptureMode。
Is it even possible to enable the HDR option from within my application? I assumed it would be there automatically. I looked for additional mediaTypes, thinking maybe kUTTypeHDRImage might be an option, but no such luck. It's not an additional source type, nor is it available through cameraCaptureMode.
ipc.sourceType = UIImagePickerControllerSourceTypeCamera;
ipc.mediaTypes = [NSArray arrayWithObject:(NSString *)kUTTypeImage];
文档:
推荐答案
HDR选项特定于相机应用程序,并且不可通过API。
The HDR option is specific to the Camera app and is not available through the API.
您应该在 http://bugreport.apple.com 。
这篇关于为UIImagePickerController启用HDR选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!