0

In UIImageviewPicker - The photo i am capturing ,

is that delegate is using AVFoundation framework for taking photo ? The image I am getting , If I want RAW (not JPEG/PNG) image , Can I use the same image I am getting from

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info 

this info dictionary ?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Jean-Luc Godard
  • 1,873
  • 3
  • 28
  • 53

1 Answers1

0

Most probably UIImagePicker camera grabbing is based on AVFoundation. The image given in the info dictionary is not RAW. If you want a row image you should implement your own camera functionalities using foundation and accessing the CVSampleBuffer.
Check also this answer iOS: Get pixel-by-pixel data from camera

Community
  • 1
  • 1
Andrea
  • 26,120
  • 10
  • 85
  • 131