Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enable HDR Option for UIImagePickerController

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];

No mention of it in the documentation: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

like image 326
Steve Avatar asked Sep 28 '10 15:09

Steve


1 Answers

The HDR option is specific to the Camera app and is not available through the API.

You should file an enhancement request at http://bugreport.apple.com.

like image 54
Kris Markel Avatar answered Sep 18 '22 00:09

Kris Markel